avunu
January 11, 2023, 10:57pm
1
You’ve added Query Results on Slider. Awesome! Let’s keep it going!
Rendering results on a map (with posts attached to an ACF geo/map field) is next!
As part of this, we should have a way to filter by proximity, so we can implement store locators right within Cwicly!
3 Likes
avunu
March 10, 2023, 1:43pm
3
Let’s keep the voting going…
1 Like
Any news on that front @Louis ?
Still no communication on this feature request?
Louis
May 29, 2023, 12:51pm
6
Hi there @avunu and @A375929 ,
Thanks for bringing this up.
This will be addressed as soon as we have reworked our Maps block that needs to include a few features requested on this forum.
Thanks for your patience on this one.
Cheers,
4 Likes
Hi @Louis , just checking on this as we have a requirement for it coming up very soon.
Thank you!
kane
February 26, 2024, 12:11pm
8
We also have a requirement, but I’m wondering if WP GridBuilder works with CWICLY?
A375929
September 10, 2024, 10:08pm
9
Hi guys, any idea when this will be worked on / released ?
Hi @A375929 ,
While it is not an out of the box solution, if you have an urgent requirement and you can use code, @owynter did previously provide this example of loading ACF fields into a map, which works well:
Here you go:
1. First, you need to enqueue Google Maps in your installation. Add your Google Maps API key in line 1 :
<script defer src="https://maps.googleapis.com/maps/api/js?key=YOUR_API_KEY_HERE"></script>
<script type="text/javascript">
(function( $ ) {
/**
* initMap
*
* Renders a Google Map onto the selected jQuery element
*
* @date 22/10/19
* @since 5.8.6
*
* @param jQuery $el The jQuery element.
* @return object The map instance.
*/
function initMap( $el ) {
// …