Hey guys,
Ran into a little change I need to make, and I’m not sure how to go about it.
On my site: http://nalusgrill.com/
At the very bottom of the site, on the Catering contact form, which I made using the templates shortcode using the “datepicker” selection for the form, it is showing the European format of Date/Month/Year instead of how I want it which is the U.S. format Month/Date/Year. How can I go about changing this?
Thanks in advance,
Ransom
Hi!
Please add following code to Functions.php file in Appearance > Editor
add_filter('avf_datepicker_date_placeholder', 'new_date_placeholder');
function new_date_placeholder() {
$placeholder = "MM / DD / YY";
return $placeholder;
}
add_filter('avf_datepicker_dateformat', 'new_date_format');
function new_date_format() {
$date_format = " mm / dd / yy";
return $date_format;
}
Regards,
Yigit
That worked, thanks!
There is one other thing, perhaps you can help me here without creating a new thread.
At the bottom of the same site, where there is a map, I punched in the address for the third restaurant location and it never showed up on the google map? And it also made the map zoom far out like you can see it now.
What should I do here?
Thanks,
Also, the contact forms are not sending anything to my email as I need them too, is there something I should make sure to do with those also?
Hi,
Please refer to this post regarding – http://kriesi.at/documentation/enfold/my-contact-form-is-not-sending-emails/
Maps seem to be working fine on my end. Have you figured it out already? :)
Best regards,
Yigit
Yup! I figured out the maps by simply imputing the longitude and latitude, thanks!
As for the contact form, il check out this thread and see if it helps, thanks for that too!