• Hi Joe.

    I’d like to be able to hide all markers by default on a map and show them all by default on another one.

    Is it possible to have a shortcode parameter like “show_markers=0” by chance?

    Thanks buddy! Keep up the good work.

Viewing 1 replies (of 1 total)
  • Plugin Author Joe

    (@morehawes)

    Hi @alessandroavenali,

    This could be achieved with the show/hide_marker Shortcode options, however you would need to list all Types for each Shortcode. I think being able to show/hide all as your suggested would be a nice addition.

    If you are hiding all Markers when the Map loads, are you wanting them to become visible again by selecting them through the Overlay Filter? If not, and they should remain hidden you could hide all markers from a map using the following CSS:

    .waymark-marker {
      display: none !important;
    }

    Or by Type:

    .waymark-marker.waymark-marker-photo {
      display: none !important;
    }

    Cheers,

    Joe

Viewing 1 replies (of 1 total)
  • The topic ‘“Hide markers” as a shortcode’ is closed to new replies.