Okay
  Public Ticket #1633993
grid view
Closed

Comments

  • mjboya started the conversation

    Hello, 

    It is possible to limit the items list on the grid view? I've tried to specify only 3 items on the agenda limit per click box, but the plugins still shows all the items.. 

    Regards

    Xus

  •  94
    Valentin replied

    Hello, 

    I'm sorry for the delay, we are usually off at the weekends.

    If you want to limit the grid views you have to go to St Event Calendar -> Fonts & Colors -> Grid Layout and on the bottom you will see this: 



    If you want to show only 3 items per load change Events per click to 3.

    Stachethemes Support
    My Time Zone is GMT+3


    Envato Profile | Facebook | Twitter | Newsletter | Rate & Review

  • mjboya replied

    Thanks!! it worked perfectly.

    Just another question, even I've already got a Google Maps API Key,  we can not get the coordinates, nor find directions to any event  from the front-end.. 

  •  94
    Valentin replied

    This is the key message: This API project is not authorized to use this API

    Look like you will have to configure your API project in Google Maps.

    Stachethemes Support
    My Time Zone is GMT+3


    Envato Profile | Facebook | Twitter | Newsletter | Rate & Review

  • mjboya replied

    Thanks, finally managed to make it work.. 

    Did bought another licence yesterday, because of the amazing support. 


    regards

  •  94
    Valentin replied

    Thank you guys really appreciated!

    Stachethemes Support
    My Time Zone is GMT+3


    Envato Profile | Facebook | Twitter | Newsletter | Rate & Review

  • mjboya replied

    did press the reset button when trying to save some changes  .. there is a way to undo?? 

  •  94
    Valentin replied

    Ouch, unfortunately no...but this actually good idea...

    Stachethemes Support
    My Time Zone is GMT+3


    Envato Profile | Facebook | Twitter | Newsletter | Rate & Review

  • mjboya replied

    Hi again.. two more questions, it is possible to change the icon on the map view for a pin or similar? 

    And last, it is possible to change the map scale?


  •  799
    Zhivko replied

    Hi,

    To change the icon for a pin open your theme functions.php file and at the bottom add following:

    add_action('wp_footer', function() {
        ?>
        <script type="text/javascript">
            ;
            (function ($) {
                $(function () {
                    $('.stec').on('stecMapMarkerIcon', function(a, data){
                        data.temp.stecMapMarkerIcon = '';
                        
                    });
                });
            })(jQuery);
        </script>
        <?php
    });


    To change the default map scale add in your shortcode map_zoom attribute.

    Example:

    [stachethemes_ec map_zoom=2]

    Value can be between 1 and 16


    Stachethemes Developer