4571 comments found.
Hello!
Could you help me with a few things?
1) In 2.8 release you added this change:
- For better user experience, carousel arrows will always be displayed
Could you add hide function for arrows if all item is fit in carousel. For example if there is enough space for four items, in carousel is shown only one/two/three items. In this case the horizontal/vertical scroll is not needed.
2) I set Layout type to “Full width & Fixed height”. How I can add parametr max-width to CSS for all elements on map? I have a template GK Quard (Demo: https://demo.gavick.com/wordpress/quark/) and it use this parametr for some elemetns, in example Menu (#gk-mobile-menu) and logo (.gk-logo). I want to do a similar style for all elements (navigation buttons, carousel, map style and etc.) on maps.
3) Half a year ago I asked you about a route function:
Hi, there! Do you have any plans to add routes function in future? To get route/destination from one marker to custom location/address. Example of beutiful realization routes on Yandex maps: https://maps.yandex.com/?rtext=&rtt=auto
You says: “Yes i do have plans but not in the near future”. May be you have a more precise plans today?Hi,
Could you add hide function for arrows if all item is fit in carousel. For example if there is enough space for four items, in carousel is shown only one/two/three items. In this case the horizontal/vertical scroll is not needed.
- I’ll try to do something about this.
I set Layout type to “Full width & Fixed height”. How I can add parametr max-width to CSS for all elements on map?
- To do this, find the elements to which you want to add the max-width parameter and add your custom CSS in the field Troubleshooting & configs => Custom CSS. Here’s an example:
.codespacing_progress_map_area{max-width:1040px;}
Do you have any plans to add routes function in future?
- Yes i still have plans. I’ll launch a new plugin soon, then, i’ll attack the route function.
Thank you
- I’ll try to do something about this.I rely on you.
- To do this, find the elements to which you want to add the max-width parameter and add your custom CSS in the field Troubleshooting & configs => Custom CSS. Here’s an example:.codespacing_progress_map_area{max-width:1040px;}
Concerning your suggestion it is not so easy. It is not what I need. To make more understandable what I propose find picture linked (https://yadi.sk/i/jbbctTKbqgdND).
What you suggested result (https://yadi.sk/i/6csDpahPqgdTN)
- Yes i still have plans. I’ll launch a new plugin soon, then, i’ll attack the route function.Good news. I anticipate it!
Concerning your suggestion it is not so easy. It is not what I need. To make more understandable what I propose find picture linked (https://yadi.sk/i/jbbctTKbqgdND ). What you suggested result (https://yadi.sk/i/6csDpahPqgdTN ) P.S. in previos message parser makes my links inkorrect.
Hi,
Please send me the URL of your map and i’ll try to see what i can do.
Thank you
Hi,
Please add the following CSS code in the field “Troubleshooting & configs => Custom CSS”.
.codespacing_progress_map_carousel_container{max-width:1040px !important; margin-left:-520px !important;} .codespacing_zoom_container{left:155px !important;}
For the buttons on the right, those are Google Maps buttons and we can’t do anything about them.
Thank you
Thanks for your help, but it’s a bad idea. Because if we use the values of margins then on other devices/monitor resolutions this elements will display in a diferent way. Example screen from my iPhone: https://yadi.sk/i/3p6i8wi5qko95
Hi, I love this plugin, however I have found over the past year it has been a little glitchy when also using Google Maps within a website. Not the end of the world since I have found workarounds.
Tonight I created a new property post which is what I use this plugin for. Once I published it, it killed the plugin. There was nothing different about this post over any of my previous. I then updated to the latest version of the plugin, hoping this would fix the issue. Still nothing. If you could take a look, I would really appreciate this. http://onepmiowa.com/locations-dev/
Thanks!
Hi,
You have a problem in the longitude value of the post with the ID “2186”. Please update this post and remove (,17z) at the end.
Change “91.292453,17z” to “91.292453”
Thank you
You are awesome! That fixed the issue. Just wish this plugin played nicer when using the Divi theme. I have to disable the plugin, whenever I want to create a map using the built in Divi module. Once the Divi map is created, I can activate the Progress Map plugin again.
Does this work with WPMU?
Hi,
Yes it does.
Thank you
I’m interested in purchasing this plugin. Here are my few questions:
1) Am I correct in assuming that if each of my real estate listings is a wordpress post, then I can connect one of those markers to that post so people are sent to it directly when clicked?
2) Can the default view of the map be set up so that everyone sees it the same way for the first time? As in, I want the initial view to encompass the entire state of Michigan?
3) Can I change the size of the map? I’d like it to be taller than it is wide on whatever page it is displayed on.
Hi,
1) Am I correct in assuming that if each of my real estate listings is a wordpress post, then I can connect one of those markers to that post so people are sent to it directly when clicked?
- Yes you are.
2) Can the default view of the map be set up so that everyone sees it the same way for the first time? As in, I want the initial view to encompass the entire state of Michigan?
- Yes.
3) Can I change the size of the map? I’d like it to be taller than it is wide on whatever page it is displayed on.
- Yes you can.
Thank you
Hey Codespacing, I am attempting to display markers from several different post types. After searching the comments on here for a while I’m thinking the query is limited to a single post type? Is there any way to pump multiple post types into this without building an array of all the post_ids from all the post_types i need? Thanks!
Hi,
The only way to do that is by changing the query arguments using the available filter “cs_progress_map_main_query”. Here’s an example of the code you need to adapt to your needs and to add in the file “functions.php” of your theme.
<?php
/**
* Change Progress Map query args
*/
function cspm_change_query_args(){
$args = array(
'post_type' => array('post', 'page'),
'posts_per_page' => -1,
'fields' => 'ids', // Note: Do note remove this parameter
);
return $args;
}
add_filter('cs_progress_map_main_query', 'cspm_change_query_args');
Thank you
OMG thank you so much, I just spent the last few days sweating bullets! Thank you for all your work and good job!
Hey, so I’ve tried getting this to work a few times. It still only displays whatever is selected as the Main content type in your settings. I output $query_args just before Execute query in progress-map.php and it has my array of post_types in there..
Array
(
[post_type] => Array
(
[0] => poi
[1] => parking
[2] => events
)
[posts_per_page] => -1
[fields] => ids
)
If one of my post_type => array values match Main content type in the database, it will output only that Main content type, not the other values in this array. If one or more values do Not match the Main content type in the database, nothing at all is output. I also noticed if I use this function to call the matching Main content type, my array I posted here only contains this info, if I remove this function and continue to output the same Main content type, the $query_args has much more data in it.
Thanks for all your time, I cannot see myself being the only user looking for this type of functionality? Take care.
I found a workaround/fix.
progress-map.php line 5270ish$markers_object = isset($markers_array[$post_type]) ? $markers_array['parking'] : array();
$post_type is only 1 post_type, which is whatever Main content type is set to in the db.
So for now I manually merged the post_types I need from your main array.
$markers_object = array_merge( $markers_array['poi'], $markers_array['event'], $markers_array['parking'] );
If I continue to develop with this, I guess I’ll end up looping that through whatever post_types I pump into this. Thank you again for your work.
Just sat down to clean this up a little and realized the post_type override function you gave me does not work with this. At some point in my debug, I pumped the array right into the main $query_args.
progress-map.php line 2785ish
$query_args = array( 'post_type' => array('poi', 'parking', 'event'),
If I set this back to it’s default $post_type_array, it’s back to a single post_type from the db.
Just wanted to throw this out there in case anyone else goes through this.
Is it possible to find the way to place using this plugin?
Hi, Unfortunately no.
Thank you
Greating! How to add search by title?
Hi,
The plugin doesn’t provide an option to search by title.
Thank you
Is it hard to add this in code?
Thank you for answer!
Hi,
Sorry for the delay. Yes it is.
Thank you
Can I guild a Wheres Gorge application using this software, where a visitor can enter their information and add their own pin to the map? Example: http://www.wheresgeorge.com/
Hi,
Sorry for the delay. It could be possible to do that but it’ll require some developer skills.
Thank you
Hey Codespacing,
I had progress map installed on a testing site and attached maps and locations to a custom post type. I’ve now got the live site and have imported all of the custom post type posts (500+ instances of map locations.)
The problem is that each individual map for single pages appears properly but the pins do not appear for the overall map unless I re-save each post. For 500+ posts that’s a bit tedious so I was wondering there was a way to refresh the map to get it to find the data?
Thanks in advance!
Hi,
Please go to “Troubleshooting & configs” and click on the button “Regenerate markers”.
Thank you
Brilliant thank you!
Same issue as Marin205
When I filter the map, it zooms in on the first marker (alpha order). It’s zooming in at a very high level. The previous version kept the same zoom level as before the filter so you could see the entire map filtered.
Hi,
I’ll add an option to deactivate changing the zoom after a search or filter request in the next version 2.8.2 ASAP.
Thank you
Thanks, Awesome map!
Hello, I’ve just updated Progress Map from 2.7.1 to 2.8.1. The progress Map runs on a WP website 4.4.2 version. The Map doesn’t work , I mean, I have connected it to the articles, at the end of each article i see the map where I need to add Longitude and Latitude. Once I add the numbers nothing change and I won’t be able too to move the map or to search a place. All the articles are already published if that could help. What’s wrong ? I need to add API KEY ? I have also tried to regenarate it… Thank you for your kind reply! Francesca
Hi,
Please send me the login to your site at plugin.progressmap@gmail.com to check this. I’ll try to see what’s wrong.
Thank you
Hello, I’ve just updated Progress Map from 2.7.1 to 2.8.1. The progress Map runs on a WP website 4.4.2 version. The Map doesn’t work , I mean, I have connected it to the articles, at the end of each article i see the map where I need to add Longitude and Latitude. Once I add the numbers nothing change and I won’t be able too to move the map or to search a place. All the articles are already published if that could help. What’s wrong ? I need to add API KEY ? Thak you for your kind reply! Francesca
Hi,
For support, please contact me using the account you’ve used to purchase the plugin.
Thanks
I have uploaded custom Map Markers that are not as tall as the default markers to allow for toggle bar blocking. Now the infobox appear too high. Is there a way to lower the infobox to compensate for the smaller icon?
The Carousel arrows are blocking the text on the infobox. Is it possible to have the infobox stop next to the arrows and not overlay?
I have sent screen shots to your email to show the issues.
Thank you
Hi,
Is there a way to lower the infobox to compensate for the smaller icon?
- Go to “Map settings” and select the option “Set the anchor point => Disable”.
The Carousel arrows are blocking the text on the infobox. Is it possible to have the infobox stop next to the arrows and not overlay?
- Please add the following CSS code in the field Troubleshooting & configs => Custom CSS>
.jcarousel-skin-default .jcarousel-clip-horizontal{margin:0 45px;}
Thanks
Thank you that works perfectly! One last question. The arrows now have an inactive color that I want to change to #bc3934 to match the carousel skin. When I try to make the change under “Carousel Style; Arrow Background color”, that changes the active color only. thank again for your help. LOVE the PLUGIN
Hi,
Please add the following CSS code in the field “Troubleshooting & configs => Custom CSS”
.jcarousel-skin-default .jcarousel-prev-horizontal,.jcarousel-skin-default .jcarousel-next-horizontal{background-color:#bc3934;}
Thanks
great thank you that worked!!
No problem. Don’t forget to rate the plugin if you like it. Thanks
Hello Codespacing. Presale question.
I need to have more maps with the possibility for the user, to add theyr own point on them. For example, a list of objects as posts (or pages) each of them with theyr own map and if a user finds one of them, they can put the exact point of finding on that map. And then again. So if I found an object, I can see the points reached on the map before me.
Can this be done with Progress Map? Thanks in advance!
Ezio
Hi,
Can you please provide more info. It’ll be better if you describe this in steps.
Thank you
Yes of course.
Step 1: made by admin. Insert an object on the site (for example a plate) as a post, with photo and description.
Step 2: made by admin. This object was left at Piccadilly Circus, London. So a map will be created for that object, with only one marker, in Piccadilly Circus.
Step 3: made by user. I read on the site that this object is at Piccadilly Circus and like a treasure hunt, I’ll search for it. I found it and then I decide to hide it in another place.
Step 4: made by user. Add a new marker on the map of the object, with the new coordinates. Now the post of the object has two marker on the map, the old one and the new one.
It will be like a giant treasure hunt, but every object needs it’s own map with own markers so when I read a post about an object, I will see all the points reached.
Thanks again, Ezio
Hi,
Sorry for the delay. I now see what you want to do but unfortunately, i don’t think you can do this using this plugin. There’s no option that allows adding more locations to the same post from the frontend.
Thank you
Hi, I would like to know if it id possbible to turn off fokus on selected items in the filter? On my page loading items from filter is faster in older plugin version (2.7.5) . On your demo page, new version of map works fine, but on my page it works slower.
Hi,
Can you please provide more info? What makes you think it’s related to the focus on the selected items in the filter? Have you made any test that you want to share with me?
Thank you
Hi,
In the previous version it was working as follow: When I was chosing some item from filter option, the screen has not been changing the zoom and I was able to see all items which were choosen with filter option, And it was working fast. After update everything works much slover. On the top of this, when I chose some item from filter option, the screen zooms into this item and I am not able to see estabished area. (I would like to turn off this option) Could you please see how does it work? http://gdziestrzelac.eu/ Please let me know as soon as you will do it. Then I will update my map and you will see what the problem is.
Hi,
I’ll add an option to deactivate changing the zoom after a search or filter request in the next version 2.8.2 ASAP.
Thank you
Great. Thank you.
Hi,
Please add the following CSS in your theme stylsheet or in the field Troubleshooting & configs => Custom CSS>
#cb-nav-bar #cb-main-menu{z-index:9999;}
Thank you
perfect, thank you! another issue I have is I’ve hidden the Search Form and now there’s a big gap between the zoom controls and the Filter icon. any way to bring the Filter icon closer to the zoom controls?
Hi,
Please add the following CSS in your theme stylsheet or in the field “Troubleshooting & configs => Custom CSS”
div.faceted_search_btn,div[class^=faceted_search_container]{left:60px;}div[class^=reset_map_list]{left:104px;}
Thanks
that worked perfectly, thank you 
Dear Codespacing, Is it possible to set geo targeting mode only in mobile devices? Desktop user – normal version.
Unfortunately no. This is not possible to do.
Thank you
Hello Progressmap,
Version 2.8 and 2.8.1 breaks down my download page.
It give a weird look to my download product page, I am using easy digital downloads. I checked everything and this plugin breaks it.
Please help!
Kind Regards
Hi,
Can you please be more specific. Is it an issue concerning the styling or an error that doesn’t allow you to use some functionalities of your theme.
Thank you
Of course, no it has to do with styling.
If you give me your private email, I can send you some pictures?
Yes please, send them to plugin.progressmap@gmail.com
If you could send the URL of the website, then, it will be easy for me to find the problem.
Hi. I am really interested in getting this plugin, but want to ask a few questions. 1. Has this plugin been tested with Wp job manager plugin? 2. instead if the carousel can this plugin display a list of jobs/places? 3. Will your plugin display correctly in RTL arabic language? Thanks
Hi,
1. Has this plugin been tested with Wp job manager plugin?
- Did not tested this plugin before but from the description, i’m sure you’ll be able to use it with Progress Map.
2. instead if the carousel can this plugin display a list of jobs/places?
- Unfortunately no, for the moment, the carousel is the only way to display your places.
3. Will your plugin display correctly in RTL arabic language?
- Yes it will.
Thank you
Hello there – Unfortunately the updated plugin re-arranges my homepage. My featured articles section now is all askew. When I de-activate the progress map plugin it returns to normal. Any assistance would be greatly appreciated as I would love to use the updated plugin’s features on my site.
Kind Regards
Elliott
Hi,
Please send me the URL of your website or a screenshot of your homepage.
Thank you
URL is www.magchild.com – I can’t add screentshots on this thread. Is there an email I could send it to?