4570 comments found.
We recently purchased your plugins Progress Map and Markets Filter from CodeCanyon. We are trying to replicate the setup shown here:
However, instead of displaying blog posts, we would like the map pins and the carousel items below to display Portfolio Projects. We also need the project details to load when clicking the pin pop-up.
Could you please guide us on how to configure the plugins to support Projects instead of standard posts?
We recently purchased your plugins Progress Map and Markets Filter from CodeCanyon.
However, instead of displaying blog posts, we would like the map pins and the carousel items below to display Portfolio Projects. We also need the project details to load when clicking the pin pop-up.
Could you please guide us on how to configure the plugins to support Projects instead of standard posts?
I’m currently experiencing an issue with the Progress Map plugin. When I hover over a pin on the map, the infobox shifts to the opposite side and does not display correctly. It looks like the infobox is being pushed away from the pin instead of appearing beside it.
Sample screenshot https://prnt.sc/cjnoJFO0EvVmCould you please take a look and advise on how this can be fixed?
Thank you for your help!
Dear Codespacing team,
Thank you very much for this great tool. I am very excited about it. I am currently having the problem that no link is generated in infobox-2. I would like to link the images to the respective posts. Only the title below is linked. What can I do here?
Thank you for your help in finding a solution.
Best regards, Philipp
This is the infobox i used: https://seilx.one-fox.com/kartenansicht/ When you zoom in, you will see the markers. The images above cannot be clicked because there is no a-tag. Thank you for your help.
I want to report a bug when updating to 5.8. The map wasn’t visible anymore, because .codespacing_progress_map_area.cspm_linear_gradient_bg had height 1 px.
I fixed it in CSS by adjusting the height to 600px.
There are continuous errors even though all the API are enabled.
progress_map.min.js?ver=5.8:1 You’re calling a legacy API, which is not enabled for your project. To get newer features and more functionality, switch to the Places API (New) or Routes API. Learn more: https://developers.google.com/maps/legacy#LegacyApiNotActivatedMapError
Hello,
I’m reaching out because we noticed that the map on our client’s website has stopped working.
Here are the browser console logs:
Uncaught ReferenceError: google is not defined at cspm_validate_latLng (progress_map.min.js?ver=5.7.2.0:1:284) at cspm_load_map_options (progress_map.min.js?ver=5.7.2.0:1:483) at HTMLDocument.<anonymous> (locaux-a-louer/:2460:28) at e (jquery.min.js?ver=3.7.1:2:27028) at jquery.min.js?ver=3.7.1:2:27330
Could you please explain what’s causing this issue with the integration so we can fix it as soon as possible?
Best regards, Guillaume Paoli
Hi Just wanted to ask some questions before we purchase…
With progress map and the list and filter add on are we able to make the listings open a new page (instead of a pop -up) when we click on the listing below the map.
And is it possible to make the map icons pop up with a small info box when clicked instead of opening the whole listing page?
Thanks for your time.
Kate
I have sent you an email regarding map centering.
Hi,
I’ve sent you an issue by private mail. I’m waiitng for your answer.
Hi there,
After updating Progress Map from v5.7 to v5.8, my maps stopped loading. The progress bar nearly completes, then freezes, and the console shows this JavaScript error:
Uncaught ReferenceError: marker_icon is not defined at cspm_new_pin_object (progress_map.min.js?ver=5.8)
I confirmed that:
My Google Maps API key is valid and re-saved
All other plugins and custom scripts were disabled
The issue still occurs with a default theme
If I manually define marker_icon in the footer with:
if (typeof marker_icon === ‘undefined’) { var marker_icon = ’’; }
the map loads and works correctly.
This suggests that in version 5.8, marker_icon is no longer being defined before cspm_new_pin_object() is called (perhaps only when the default marker is used). Could you please confirm if this is a known issue or provide a fix in the next update?
Thanks for your help — and for a great plugin!
My email is ashlandwebsites@gmail.com I am not a coder but Chat GTP helped me to troubleshoot and draft this message.
Best regards, David Gordon
We are having problems with the map plugin. It no longer autofits to the pins on the page. You can see it initially load with autofit, but then quickly switches to the default map center. If I remove the map center option, it displays London. You can still click the autofit button and have the map center properly with all of the pins, but it used to do that on page load.
Hi,
I am not able to correctly load the map on my website – this says “This page doesn’t load correctly Google Maps” and it shows on the map “for development business only”.
The error code is related to BillingNotEnabledMapError, but I assure you that my billing profile is active through Google Cloud – API Keys are linked too.
Can you please help me?
Any luck?
I just sent a DM, but I thought I’d add my comment here to cover my bases. We just migrated our wordpress site to Divi and the map is working great, but we can’t get the filters to appear on the map like before. We have 17 days left on our pre-paid support and need to start a support ticket to get this resolved. I checked every setting and it is set up correctly. The problem is that the filters will not appear on the map. Thanks in advance for your help!
How can I configure my map to display only the Philippines and hide all other countries? https://prnt.sc/Dc2YgJdKFgj2
Also my product image is not showing https://prnt.sc/zmmyM5WktVYI. Thanks https://www.lxv.ph/listing/banwa-private-island-palawan/
Hello, i am experiencing a trouble with the plugin, i did all great with google to make the project work so billing is establish correctly, but yet the map show an error about that and also and above all : the map only shows one post having the location but not all the others… Could you check if you can see any pist to help me ? Thank you very much in advance, I have been glad to use your plugin till if was working great by the way, so thanks : https://www.permatheque.fr/reseau-permacole/
Reposting support request here, as I realize I was posting under “List & Filter” plugin. I sent and email to you describing the issue and put my map in debug mode. Thank you.
Hello, I have this plugin in WordPress on my website. I am having issues with an error.
“This page can’t load Google Maps correctly.” How do I resolve it?
Hi, is it possible to get the current post GPS coordinates via API code? We’d need them to create a google link inside the post dinamically
Hello,
I’m not entirely sure what you’re trying to achieve, but if you’re simply looking to retrieve the post’s coordinates using code, here’s an example:
<?php
$lat = get_post_meta(get_the_ID(), 'codespacing_progress_map_lat', true);
$lng = get_post_meta(get_the_ID(), 'codespacing_progress_map_lng', true);
if ($lat && $lng) {
echo '<a href="https://maps.google.com/?q=' . $lat . ',' . $lng . '" target="_blank">Open in Google Maps</a>';
}
?>
If this isn’t what you’re looking for, please share a bit more detail about your use case so I can assist you more accurately.
Thank you
thanks. The following works as well:
$post_id = get_the_ID(); $lat = get_post_meta( $post_id, CSPM_LATITUDE_FIELD, true ); $lng = get_post_meta( $post_id, CSPM_LONGITUDE_FIELD, true );
Hi Codespacing, we have buyed licence for Progress Map and List&FIlter. If we want to test further functionality on staging site on our subdomain – do we need to buy another licence or it will work as on main domain? Or what is recommended practice? Thank you.
Hello,
You’re free to use the same license on your staging site, that’s not an issue. However, if you plan to use the plugin on a different live site, you’ll need to purchase an additional license.
Thank you