Forum Replies Created

Viewing 10 Topics - 1 through 10 (of 10 total)
Author Posts
November 6, 2014 at 3:41 pm in reply to: Multiple dates 29836
Bruno Bruno

Hi there Squander,
how about integrating the Jquery Datapicker (http://jqueryui.com/datepicker/)?

would love to hear about this.
Thanks.

September 19, 2014 at 3:59 am in reply to: Custom Field Google Maps 27004
Bruno Bruno

Francisco,
from my code above change this line to:

var myLatlng = new google.maps.LatLng(<?php echo get_post_meta( $post->ID, 'map_location', true ); ?>);

Let me know if it is working now.

September 18, 2014 at 9:32 pm in reply to: Multiple dates 26994
Bruno Bruno

Sekander,

is there any chance to integrate this plugin in the date picker field on the form?

http://multidatespickr.sourceforge.net/

Hope to hear from you soon.

All best,

Bruno Bruno

Any news about this?
Is there any booking calendar we can integrate with WP Front-end plugin?

Regards,

September 18, 2014 at 8:32 pm in reply to: Custom Field Google Maps 26989
Bruno Bruno

Hi guys!
I’ve been able to worked out.
Hope this solution helps any others.

The solution: and echoing the get_post_meta var you’ve defined on the wp front-end.

Using Google Maps API V3
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp"></script>

The Script in your single.php (or ohter)

<script>
function initialize() {
var myLatlng = new google.maps.LatLng(<strong><?php echo get_post_meta( $post->ID, 'map_location', true ); ?></strong>);
var mapOptions = {
zoom: 10,
center: myLatlng
}
var map = new google.maps.Map(document.getElementById('map-canvas'), mapOptions);
										
var marker = new google.maps.Marker({
position: myLatlng,
map: map,
title: 'We are here!'
});
}
										
										google.maps.event.addDomListener(window, 'load', initialize);
										
									</script>
									<div id="map-canvas"></div>

Important!
Don’t forget to define a min-height for #map-canvas in your CSS.

September 16, 2014 at 4:57 am in reply to: Multiple dates 26856
Bruno Bruno

Hi Sekander,

is there a way to make the date field increased by the user? Like if someone wants to add new dates in the front-end they would be able to increase another field? Is this possible? If not any alternative?

Hope to hear from you soon.
Thank you.

September 16, 2014 at 4:55 am in reply to: Custom Field Google Maps 26855
Bruno Bruno

Dear Sekander,

yes I’m trying to show the map and the coordinates.
Hope to hear from you soon.

Thank you.

August 28, 2014 at 2:31 am in reply to: Availability calendar? 25978
Bruno Bruno

Hi there Sekander Badsha!
thank you for your feedback.

My question: any possibility to integrat any Booking Calendar plugin with the WP Front End Pro so my clients can define any busy dates for each post?

Hope to hear from you.
All best.

June 24, 2014 at 5:34 pm in reply to: Showing fields in the theme 22373
Bruno Bruno

Hi there!

I’ve tried ID, ‘wpuf_form’, true ); print_r($form_meta)?>
but nothing have been displaying on the front-end.

I’m I doing anything wrong?

Hope to hear from you soon.

All best.

June 24, 2014 at 12:46 am in reply to: Showing fields in the theme 22345
Bruno Bruno

Hi Mahi, thanks for your feedback.

When creating a form and including the form element HTML, on the section “Others”, it doesn’t have the Meta Key value. How can I identify it on the template? i.e.: ID, ‘video’, true ); ?>

Hope to hear from you soon.

All best.

Viewing 10 Topics - 1 through 10 (of 10 total)