Code

Discussion on Progress Map Wordpress Plugin

Discussion on Progress Map Wordpress Plugin

Cart 6,347 sales
Recently Updated

codespacing supports this item

Supported

This author's response time can be up to 5 business days.

4574 comments found.

Hey,

awesome plugin! Works perfectly.

I have one question: I want to put a link instead of a description in the infobox type 1. But every time i make this it does not appear , only if i change the infobox type to “Large Infobox”. Is the “infobox type 1” too small for simple html link? It works with infobox 1 but only with 6 letters, more and the link disappears.

Hope you understand what i mean.

Glad for your help. Thanks, Benjamin

Hi Benjamin,

Please note that the infobox type 1 doesn’t allow HTML, including links. To override this behavior, you need to add a custom function in your theme’s functions.php file. Please go to Infobox settings and you’ll find the instructions you’ll need written in red (“How to use your theme’s “functions.php” file to override the infobox Title & Content in order to display your custom title & content?”).

Thank you

Hi,

I’m experiencing two issues:

1) My map is not displaying the same center as I minimize the width of my screen. Meaning, that is not responding correctly. I would like my map to stay centered in the same place like your demo: http://www.codespacing.com/.

2) My carousel’s right arrow is not showing.

Can you please help me with these issues? You can find my map here: http://www.squarefootcreative.com/rainbow/communities/

Thanks, Carolina

Hi Codespacing, I noticed that you replied to other inquiries that were posted after mine. Can you please respond to mine?

Hi,

Sorry for the delay, i was busy. Please note that some questions requires more time to answer due to their complexity. Your question is one of them because i’ve tried to figure out the problem with the map center with no success. Sorry for not replying earlier :)

Because of the map center issue, i’ll ask you please to send me the login to your site at plugin.progressmap@gmail.com to check this closely. I’ll take care of the carousel’s arrow and description and let you know the fixes.

Thank you for your patience

Thank you for your response. I understand. I’m going to email you my credentials right away.

Hi codespacing,

I’m still having an issue with maps not loading properly.

Would it be ok if I send you an email with login credentials so you can take a look in the back-end.

Would really appreciate any help as I myself cannot tell what’s causing the issue.

Thanks,

Hi,

Please send me the login to plugin.progressmap@gmail.com.

Thank you

Is the Netherlands included in your collection? gr. Brunoservaege@gmail.com

Hi,

Yes. This are the list of all supported languages https://developers.google.com/maps/faq#languagesupport

Thank you

HI , i ve this 2 problems :

1. for each event (custom type ) under the menu LIVE (livelaesoe.com) i need to extract and view these fields into each marker – info box : Event custom type: name name_en description description_en date_event location

My question is how can i view all these fields inside the info box of each marker when i hover them on my map?

2. is it possible to add in the filter the labels? Filter labels: - Today - Tomorrow - This week After that is it possible to filter the markers about these temporal filter ? i mean every marker is linked to a custom type having a field called “Event_date” so is it possible to view the events-markers on my map filtered by time ?

CAn you help me please?

thanks in advance

PS if you need user e pwd let me know

Hi,

Sorry for the delay, i was busy.

1. Please go to Carousel items settings and make use of the field Items description. You’ll find all the instructions you need under that field.

2. Unfortunately, you can’t filter your locations by date.

Thank you for your patience

Hi

Filter: I get a filter option for a category with no posts in it. Is it possible to not show this empty category?

Kind regards Thomas

Hi,

Ok, i see what you mean. Please go to Faceted Search Settings and remove the category “Gastronomie” from the “selected items” list in the field Categories.

Thank you

ok.. but i wanted to have these filter on an other site.

Hi,

What do you mean by having the filter on another site? Please provide more info about your issue.

Thank you

When I use [codespacing_progress_map] on a page, it only shows Google pins instead of the image bubble. I have a featured image in the post and it does show on individual posts just not the main map.

For some reason it is working now. But the images do have an offset ring around them.

Hi,

Sorry for the delay, i was busy. Please send me the link to your map to check this. I think it’s just a CSS conflict with your theme.

Thank you for your patience

Hi !

I am really not skillful with the html code. I just purchased the plugin and I simply don’t understand how it works. I want to create different maps 1.of restaurants 2.coffee places 3. Shop. Does each individual place has to have a post page to appear in each map ? I don’t understand how it works with the different codes. Can you please help me.

Thank you !!!

Sandrine

Hi,

Sorry for the delay, i was busy. To display multiple maps where each map displays certain locations, please use the following shortcode:

Restaurants Map:

[codespacing_progress_map post_type="YOUR_POST_TYPE_NAME_HERE" tax_query_field="slug" tax_query="category{restaurants|IN}"]

1. Please change (YOUR_POST_TYPE_NAME_HERE) by what it says.

2. Don not change (tax_query_field=”slug”).

3. Change (category) by your taxonomy name.

4. Change (restaurants) by your term slug.

If you think this is difficult to do, please send me your login at plugin.progressmap@gmail.com and i’ll do this for you.

Thank you for your patience

hello. pre-buy question: is there a way to navigate the map other than the navigation wheel on the right? thanks

Hi,

Sorry for the delay, i was busy. Yes you can navigate the map using the Scroll wheel or the cursor of the mouse or double click. I’ve disabled those functions in the plugin settings page but you can activate them if you need to.

Thank you :)

hi,

I just updated progress map and now my maps only show as white boxes.

Can you please help?

Zeak

Hi Zeak,

Sorry for the delay, i was busy. Please send me the link to your map to check this.

Thank you for your patience

I have sent you an email with login details as out site is not yet open for business

Thank you. I’ll check this soon

I need to show events on Map that are both “publish” AND “future” instead of “publish” OR “future” Is there a way to specify the status to use “AND” on the Status Parameters section?

Hi,

Sorry for the delay, i was busy. Actually, the correct way to do what you want is by selecting the statuses in the “Status Parameters section”. The problem with the status “future” is that you can’t add it to a post unless your theme handles this issue someway. You need to make sure of your future posts’s status and then, select their status in the status parameters sections. I’m sure this will work.

Please note that the map uses the operator AND for statuses and not OR.

Thank you for your patience

Status Parameters is not working. I specify “Publish” AND “Future”, but the map is showing all published custom posts including “Past” posts. Appreciate if you could provide the file names where the code need to be changed so that I may make some changes or if there is any hook that I may use to change the filtering before progress map is loaded. thanks!

Hi,

You can use the hook cs_progress_map_main_query to override the default query arguments. Here’s an example:

function cs_custom_query_args(){

  $query_args = array( 'post_type' => array('post'),                            
                                 'post_status' =>array('publish', 'future'), 
                                 'posts_per_page' => -1, 
                                 'fields' => 'ids');

   return $query_args;

}
add_filter('cs_progress_map_main_query', 'cs_custom_query_args');

Note: The most important thing is to use ‘fields’ => ‘ids’ to return only post IDs.

Thank you

I seem to be having a few issues:

1. The map does not seem to be showing businesses on Firefox & Chrome – only works on Safari.

2. The map never stops loading – it’s so slow!

3. What is that bullet point within the title section of the individual business? (Top right hand corner)

I have disabled all plugins and have cleared all caches! Your help would be much appreciated!

http://tjmpropertygroup.com/philadelphia-neighborhoods/washington-square/

Thanks!

Hi,

Sorry for the delay, i was busy. I think you’ve waited too much and you’ve removed the map, sorry. Please display the map again and let me know so i can check it. I think it’s just a CSS conflict issue with your theme.

Thank you for patience

Hi mate,

Im loving the plugin so far. Just a quick question… How do I make the Item description use the posts Excerpt? I have a little custom excerpt for each post (basically the location and date of events) but on the actual post page I had to put a description above that hence me wanting to use the custom excerpt instead of just grabbing the first 200 characters.

Ignore that haha I just saw that it does it automatically hahaha Great plugin 5 stars!

Thank you for the 5 stars ;)

hi , can you help me about changing the color of filter button (now green) and background list (now green) in white with semitransparent 0.4?

thanks a lot FAbio

Hi,

For the filter button, it’s an image and you need to upload your custom image at Faceted search settings => Faceted search button image.

To change the filter list background, please use the following CSS code in Faceted search settings => Category list style

background:rgba(255,255,255,0.4);

Thank you

done ! thank you so much.

HI

I miss a possibility to define a featured entry. Featured posts could have a special style (via css) oder special marker

also a image or label for the Map Center (Map Settings) would be great!

Thank for adding this features Regards Thomas

Hi,

I’ll try to see what i can do about this.

Thank you

thanks in advance

Hi There

“Map-Down, Carousel-Up” dioesn’t work for me. I only can see the Caousel, but no Map.

Are there any settings to do?

Regards Thomas

Hi,

Can you please send me the link to your map to check this?

Thank you

Hi,

Sorry for the delay i was busy. I’ve checked your website and i think the problem is due to a CSS conflict with your theme or another plugin. For now, i can’t see the source of the problem but lets try to find it. Please select the layout Layout settings => Main Layout => Map-Up, Carousel-Down and check if there’s any issue with this one too.

Do you display the map using your page content or using a page builder plugin?

Thank you for your patience

HI CODESPACING, thanks for your support in advance… i m trying to use the secondary main content about another custom type. my question is : is there a way to change the “filter” categories for the second main content defined? thanks a lot FAbio

Hi,

I think the problem is that you haven’t specified the correct post type name. As you’ve said before, you want to filter a secondary post type’s posts but from your shortcode, i see that you used the post type “post”, which i believe is your main post type. Please try with this shortcode:

[codespacing_progress_map post_type="YOUR_SECONDARY_POST_TYPE_NAME_HERE" tax_query="category{mad.sove.transport.sjov.shop.kunst|IN}" tax_query_field="slug"]

Note: Change YOUR_SECONDARY_POST_TYPE_NAME_HERE by what it says.

Thank you

hi my secondary pos type is “post” (the first one is “events” [custom type]). Now finally i can see on the map all the posts BUT it is still present the problem with the “filter list”; i ve only the event-types http://www.livelaesoe.com/?page_id=878 and not mad.sove.transport.sjov.shop.kunst (translated in en are: eat.sleep.move.fun.buy.art). how can i view these post-categories inside the filter list instead of event-types (it is my default one, linked to main post type)? thank you so much .. this is my last problem ;)

Hi,

Sorry for the delay, i was busy. For the filter list, you need to specify two things, the slug of the taxonomy & the term IDs to use in the filter list. To do this using the shortcode, you need to use the shortcode attributes, “faceted_search_tax_slug” & “faceted_search_tax_terms”.

Please add the following code to your current shortcode:

 faceted_search_tax_slug="eventtype" faceted_search_tax_terms="258,259" 

I hope this will work for you and thank you for your patience :)

Hi, Is there a way to show/hide some markers when the user click an item ?

For exemple,let’s say that I have 50 markers. If I click on “England”, I’d like to hide the 49 other markers and to show 5 new markers in England.

One other possibility would be to open a new map with those 5 new markers

Thanks

Hi,

Unfortunately, you can not use an item to show/hide other items/markers, the only possible way to that is by using the Faceted Search feature. I think you’ll need to use it.

Thank you

I just purchased yesterday, and I’m unable to show my events on Progress Map. I’ve setup Query Settings to have “Events (event)” as Main content, “Locations (location)” as Secondary content types.

  • However, neither events nor locations are showing up on the map.
  • I really want my events to show up like one of your posted link
  • http://www.comunediviterbo.com/test-mappa/.
  • Please help!

    Hi,

    Please note that the address field is not responsible of creating a location on the map, it’s up to the “latitude & longitude” fields to do that. If you’re using your own custom fields to save a location’s coordinates, please note that you can connect them to the plugin from the section Troubleshooting & configs => “Add location” form fields.

    Thank you

    Thanks for the information. I’ve tried adding the custom fields coordinates to the “Add location” form but the map does not show the events. Is there any other method to connect the coordinate fields e.g. any hook or function that I can change to add the coordinate by code during event submission? Thanks!

    Hi,

    Sorry for the delay, i was busy. Please note that the only way to connect the plugin with your custom fields is by giving their names in the (“Add location” form fields) section. Please read the instructions in that section and most importantly, don’t forget to regenerate your marker.

    Thank you for your patience

    Can Geo Targeting be turned on only one certain pages? I really only want it on a full-screen map page that I created, otherwise it seems to to take too much resources and slows the site down on pages with maps.

    Also I like that the map centers based on your location, but is there anyway to invoke the blue flashing dot to show the user exactly where they are?

    Hi,

    Sorry for the delay.

    About the Geo Targeting, unfortunately, you can’t activate/deactivate it using an shortcode attribute. I’ll try to see if this is possible to do and add it to a new release ASAP.

    About the user’s position, unfortunately, there’s no option to add a marker indicating the user’s location. I’ll try to see if this is possible to do and add it to a new release ASAP.

    Thank you

    by
    by
    by
    by
    by
    by

    Tell us what you think!

    We'd like to ask you a few questions to help improve CodeCanyon.

    Sure, take me to the survey