Toolset Maps is a WordPress plugin that allows you to add address fields to any content type or users and display any content on Google Maps.
Toolset Maps User Guides include detailed documentation for creating these special address fields, adding pointers to them and displaying them on maps.
When you ask for help or report issues, make sure to tell us the versions of the Toolset plugins that you have installed and activated.
Viewing 15 topics - 1,006 through 1,020 (of 1,145 total)
Problem: The popup windows for each marker on my map View are wider than the available map space. How can I limit the width of the infowindow popups to be contained within the map screen?
Solution: There's nothing built-in to Toolset that will accomplish this for you, but you can use custom CSS with media queries to apply styles to the infowindow popup. Examples:
@media screen and (max-width: 375px) {
.gw-iw-style {
width: 210px !important;
}
}
@media screen and (min-width: 376px) and (max-width: 450px) {
.gw-iw-style {
width: 300px !important;
}
}
Problem:
The issue here is that the user's Toolset Maps shortcodes are not rendering.
Solution:
In this user's case they were using an older version of Toolset Types, version 2.1 . In order for the maps shortcodes to work, you must be running the latest version of Types to maintain compatibility.
Once the user updated their plugins the shortcode started to work once more.