Comments nocs90 started the conversationJanuary 20, 2020 at 11:15pmHi, i have put the following shortcode in my event page:[stachethemes_ec view="map" views="map" show_views=0 map_zoom=30]but even if i change the value of map zoom...the zoom doesn't change.How can i do? thanks 877Zhivko repliedJanuary 21, 2020 at 5:35pmHi, Try changing map_zoom to gmap_zoom: [stachethemes_ec view=map views=map show_views=0 gmap_zoom=30] Stachethemes Developernocs90 repliedJanuary 28, 2020 at 5:24pmThanks...is it possible to change the icon of an event? i would like a push pin instaed of a square. 877Zhivko repliedJanuary 30, 2020 at 4:11pmHi,In your theme functions.php file add following code: add_action('stec_after_html', function() { ?> <script type="text/javascript"> (function ($) { $.stecExtend(function (m) { m.$instance.on('stecMapMarkerIcon', function () { m.glob.temp.stecMapMarkerIcon = ''; }); }); })(window.jQuery); </script> <?php}); Stachethemes Developer Sign in to reply ...
Hi, i have put the following shortcode in my event page:
[stachethemes_ec view="map" views="map" show_views=0 map_zoom=30]
but even if i change the value of map zoom...the zoom doesn't change.
How can i do? thanks
Hi,
Try changing map_zoom to gmap_zoom:
[stachethemes_ec view=map views=map show_views=0 gmap_zoom=30]
Stachethemes Developer
Thanks...is it possible to change the icon of an event? i would like a push pin instaed of a square.
Hi,
In your theme functions.php file add following code:
Stachethemes Developer