4574 comments found.
Hi,
I got problems, showing the infobox. I added this code and have also added the custom fields to my custom post type page:
function cspm_custom_infobox_title($default_title, $post_id){
$custom_title = get_post_meta($post_id, 'infobox_title');
return (!empty($custom_title)) ? $custom_title : $default_title;
}
add_filter("cspm_custom_infobox_title", "cspm_custom_infobox_title", 10, 2);
function cspm_custom_infobox_description($default_description, $post_id){
$custom_content = get_post_meta($post_id, 'infobox_description');
return (!empty($custom_content)) ? $custom_content : $default_description;
}
add_filter("cspm_custom_infobox_description", "cspm_custom_infobox_description", 10, 2);
?>
The infobox shows only “Array” as text. See here:
http://www.zimmervermittlung-windrose.de/#tab-id-2
Please help
Could you please help?
I found the answer by myself.
To avoid the output of custom fields as an array you have to give the function an additional argument.
The correct code for showing custom fields in the infobox should look like this:
function cspm_custom_infobox_title($default_title, $post_id){
$custom_title = get_post_meta($post_id, "infobox_title", true);
return (!empty($custom_title)) ? $custom_title : $default_title;
}
add_filter("cspm_custom_infobox_title", "cspm_custom_infobox_title", 10, 2);
function cspm_custom_infobox_description($default_description, $post_id){
$custom_content = get_post_meta($post_id, "infobox_description", true);
return (!empty($custom_content)) ? $custom_content : $default_description;
}
add_filter("cspm_custom_infobox_description", "cspm_custom_infobox_description", 10, 2);
?>
The argument true is important here, as it tells the function, that the value of the custom field is a string and not an array.
infobox_title and infobox_description are the names of my custom fields!
Problem solved!
I run the lastest WP Version, but unfortunately the plugin messes the layout of my template. It is currently active on my website http://foodresistance.byethost4.com/wp/ and as you can probably see, the whole section from the “search section” to the “share section” that are displayed underneath the posts are supposed to be displayed on the right. Plus I also have trouble to make the plugin work. I managed to display the map in the “City Food Map” and also added a location within the new plugin section of my latest post, but the location doesn´t get displayed… Any Idee what could cause this problem and how to fix it? Thank you in advance…
Niels
Hi,
... the plugin messes the layout of my template.
- This could be a CSS conflict with your theme. Please go to “Troubleshooting & configs” and select the following options:
1. Loading scripts & styles => Seperate files (Minified versions)
2. Bootstrap (CSS File) => Disable
I managed to display the map in the “City Food Map” and also added a location within the new plugin section of my latest post, but the location doesn´t get displayed
- I can’t see any map, please display the map and contact me again.
Thank you
Thanks a lot for the fast reply! #2 helped fixed the problem. Regarding the map not showing, strangely it appears in the preview of the WP editor, but not directly on the website. I included the shortcode inside the texteditor of the post like this: “
[codespacing_progress_map]” and also chose “post” in the query options of the plugin as main content type.
Hi,
From my experience, i think the problem is that the page where you want to display the map is an archive page (page dedicated to list posts of certain category) and i think that the theme developper doesn’t allow to display the text or shortcodes inserted in the page content. Such pages are usually developped to display specific content. To be sure, please create a new page, insert the map shortcode in the content, then, check if the map will be displayed. If none of this works, please send me the login of your website at plugin.progressmap@gmail.com and i’ll check this for you.
Thank you
You were absolutely right! Thank you so much for your help! I create a page instead of a post and now it works perfectly. The posts also appear on the map now.
Unfortunately I´ve got another problem. I want to use multiple maps on my site (but on different pages) and every map should only display posts with a certain keyword. I use the following shortcode “[codespacing_progress_map center_at=”52.529988, 13.410667” tax_query=”post_tag{Berlin|IN}”]” but the map still displays all the posts, not only the posts with the Tag “Berlin”.
Hi,
In your shortcode, you need to add the attribute “post_type”. Also, make sure “Berline” is the correct name of your category. Here’s an example:
[codespacing_progress_map post_type="post" center_at="52.529988, 13.410667" tax_query="post_tag{Berlin|IN}"]
Thank you
Does the “post_type” refer to document types that needs to be parsed for the tags or to the document type where the map gets displayed? I tried both, making sure that the tag was correct (even tried another tag) but nothing gets displayed: http://foodresistance.byethost4.com/wp/?page_id=144 This is how my codes looks like now: [codespacing_progress_map post_type=”post” center_at=”52.529988, 13.410667” tax_query=”post_tag{Berlin|IN}” ]
Hi,
Sorry for the delay. Please send me your website login at plugin.progressmap@gmail.com and i’ll fix this for you.
Note: Please mention this conversation in your email!
Thank you for your patience
great plugin
can it show pop up first on click rather than direclty go to detail page ?
Hi,
Unfortunately no, when you click on the infobox, the plugin will take you to the details page of the location.
Thank you
Hi, I just purchased and installed your plugin. I set up settings, added shortcode to a page but I only can see zoom buttons and white screen instead of the map: https://snag.gy/EYceHo What could be the problem? Thank you
I checked all my plugins and see that problem was in “W3 Total Cache” plugin. So my request is closed.
Hi codespacing
For my Infobox I want to have my custom title and description. And I use custom post types. This is what I got in the functions.php:
function cspm_custom_infobox_title($default_title, $post_id){
$custom_title = "cspm_custom_infobox_title";
return (!empty($custom_title)) ? $custom_title : $default_title;
}
add_filter("cspm_custom_infobox_title", "cspm_custom_infobox_title", 10, 2);
function cspm_custom_infobox_description($default_description, $post_id){
$custom_content = get_post_meta($post_id, 'cspm_custom_infobox_description');;
return (!empty($custom_content)) ? $custom_content : $default_description;
}
add_filter("cspm_custom_infobox_description", "cspm_custom_infobox_description", 10, 2);
add_filter("cspm_large_infobox_content", "cspm_custom_infobox_description", 10, 2);
?>
This code doesn’t work. I have two custom meta data fields on my page: cspm_custom_infobox_title and cspm_custom_infobox_description. What should the correct code look like? And could you be more precise in your documentation? I just copied your suggested code to my functions.php, but it didn’t work.
Please help!
Greetings Dennis
Hi, We are looking to create a dynamic map for a client who are taking a journey over 7 months to 47 countries. We are expecting to have around 250 pins of locations throughout this journey. Can your plugin load so many pins without affecting the loading time? Also, is it possible to chart a road route as shown in the screenshot I picked from your DEMO. You have to understand that performance is important and we will be marking a lot of places.
http://s31.postimg.org/sljb7hwzf/Screen_Shot_2016_04_22_at_1_55_00_PM.png
Is the list connected to website blog or a separate list post that comes with your plugin?
Hi,
We are expecting to have around 250 pins of locations throughout this journey. Can your plugin load so many pins without affecting the loading time?
- Some users have used the plugin to load 14000+ markers and the map works fine.
is it possible to chart a road route
- Yes, but you’ll have to do this manually from the plugin settings.
Is the list connected to website blog or a separate list post that comes with your plugin?
- Sorry but i don’t understand what you mean. Can you please be more specific?
Thank you
Hi,
Pre-purchase question:
Is it possible to click in the image bubble on the marker and get a more detailed infobox? Or simply click on the marker and get the infobox with image and description? Or will that infobox be always visible even if you don’t click it?
Thanks for your time,
Carina
Hi,
Is it possible to click in the image bubble on the marker and get a more detailed infobox?
- When you click the bubble, the map will take you to the details page of the location.
Or simply click on the marker and get the infobox with image and description?
- When you click a marker, an infobox will be displayed. There different types of infoboxes that you can see at http://codespacing.com/wordpress-plugins/progress-map-wordpress-plugin/demos/infobox-styles/
Or will that infobox be always visible even if you don’t click it?
- Yes, but if you want, you can display infoboxes on different events (on marker click, on marker hover or always displayed)
Thank you
Hello I would like to know if it is possible to keep the faceted filter form and the search from on the MAP automatically pop up when the page first loaded without the need to click it open. So user can see as the page load.
Hi,
Unfortunately, there’s no option to do that.
Thank you
Hello,
Great plugin! However, I thought that we would be able to click on items in the carousel to move the map to the item selected? Not sure if this is a plugin conflict, or I have got a setting wrong but I couldn’t see anything in the other comments.
I’m running Firefox and Safari on a Mac (latest patches, etc) and you can see the page here: http://www.meejana.co.uk/wines-lebanon-syria/
If you have a suggestion why it’s not working and if there’s something I need to activate I would appreciate the support.
Many thanks
Hi,
Yes, when you click an item in the carousel, the map will move to the selected item. I tried your map and it works fine.
Thank you
Hello I would like to know if it is possible to keep the faceted filter form and the search from on the MAP automatically pop up when the page first loaded without the need to click it open. So user can see as the page load.
Hi,
Unfortunately, there’s no option to do that.
Thank you
Any resolution for removing the Nearby Places notification that pops up in Wordpress Admin? I saw your reply to an earlier request: “You can remove it by clicking on the X icon”... but, that only closes it for a moment, even after clearing cache, etc. Unfortunately, it displays on top of essential navigation/utility links in my customized admin. I need to permanently hide it. How?
Hi,
I just removed the admin notice from the plugin and sent the updates to Codecanyon. The new version 2.8.2.1 will be available ASAP.
Thank you
I installed the new version, but the notice is still there. I’ve cleared cache, deactivated/activated plugin, tried different browsers, hard-boot restarted, virtually everything possible… Nope, still there. Can close it, but comes right back.
Hi,
Please upgrade to the version 2.8.2.1.
Thank you
Hello good day I would like to know how I can do to make the progress map plugin loads faster? as it takes too long to load the items carousel
Here you can see: http://celebremosconelrey.com.ve/busqueda-por-mapa/google translate
Hi,
Please note that loading speed depends on your server capabilities, but, when i checked your website, i noticed some errors that are related to your theme. I think you need to contact your theme support and ask them why the site returns the following error when trying to get data using AJAX.
Here’s the error:
500 (Internal Server Error)
Thank you
ok thank you very much for the information’ll put me in contact with the developer theme
I am seeing errors after the latest WP update (4.5). Pages won’t load when Progress Map (v2.8.1) is activate.
Hi,
Just sent you an email.
Thank you
can you use this plugin to build your own image maps and put pins on them?
Hi,
Unfortunately, the plugin doesn’t support image maps.
Thank you
Hi, you know I have a travel blog website. I am using “where am I now” part on my home page. I want to show city and country name up to mark up. this is example. https://postimg.org/image/kb4kzod31/ how ca I do it ? thanks
Hi,
To do this, i think you’ll have to create a new post and use it as your current location. Each time you travel somewhere else, update that post’s title and the coordinates of your current location, then, in your page “where am I now”, use the following shortcode to display your map:
[codespacing_light_map post_ids="YOUR_NEW_POST_ID" width="100%" height="500px"]
*Change (YOUR_NEW_POST_ID) by the ID of your new post!
Thank you
Hi, thanks for your answer but I am making it. I created a about page. I am using it but I want to show a text on the point marker. How can I write a text on the marker ?
Hi,
What you need to do is the following:
1. Create a new post and call it “Where am i now”
2. In this post, add the coordinates of your current location
3. Save your post
4. Edit the page “About”
5. In the content of this page, add the followig shortcode:
[codespacing_light_map post_ids="YOUR_NEW_POST_ID" width="100%" height="500px"]
Replace (YOUR_NEW_POST_ID) by the ID of the post “Where am i now”!
6. Clear the fields “Latitude” and “Longitude” of this page (“About” page)
7. Save your page
Thank you
hi, I made it but now It comes with a white circle empty. where I will write city name?
Hi,
Please add the attribute “infobox_type” to your shortcode:
[codespacing_light_map post_ids="YOUR_NEW_POST_ID" width="100%" height="500px" infobox_type="cspm_type4"]
Thank you
Seem to have an issue with RSS Feed when plugin active. I have sent you details and images via email.
Hi,
Just sent you an email.
Thank you
Hi I would like to know if I can make the pins drop one by one on the map. I would also like to know if i can list the places in the carousel one under another on the same page as the map. My purchase code is b79d7002-3863-4291-9404-b5e3daa10694
The link to the page is – http://boomerangbags.org/communities-map/ My email is joel_riddell@live.com.au
Thanks Joel
Hi,
Unfortunately, there’s no option to drop pins one by one. For the carousel, there Will be a new extension soon that allows to switch the carousel to a list.
Thank you
Hi,
I am using Visual Composer on all my posts and pages, so in the carousel description it comes up with: vc_row[title_subtitle title=”Lal Lal Wind… rather than a description. Is there a way for this to be populated differently? Thanks, Kate
Don’t worry I worked it out. I installed the page excerpt plugin and used that to propogate the description.
Hi, we are using the map with a custom post type and custom category taxonomy. We need the faceted search to be exclusive rather than inclusive. ie: show items that are in both Category1 AND Category2. Currently it is showing items in Category1 OR Category2, so the more you check, the more locations show, rather than narrowing the search. Otherwise the plugin is working great for us, so any tips on configuring this quirk would be appreciated.
Any tips please? Is this a normal functionality?
Hi,
Unfortunately,there’s no option to use the filter that way.
Thank you
Hello, All of the sudden the standard [codespacing_progress_map] is only showing a single post out of 14. any idea why? http://actontx.kyledward.com/pages/about-us/
Hi,
This could be an issue related to the select settings in “Query Settings”. Please make sure you’ve not selected a category or any other option that limits the type of locations/posts to display on the map. If everything seems correct, please send me the login of your website at plugin.progressmap@gmail.com and i’ll check this for you.
Thank you