Okay
  Public Ticket #2422024
Remove events loading graphic
Closed

Comments

  • mb9463x started the conversation

    Is it possible to show the following text instead of the current 'events loading' graphic:

    'Loading Events .....'

    Instead of the current graphic. I like the look of the graphic but it doesn't fit with the design aesthetic we are going for on the site. 

  •  783
    Zhivko replied

    Open file stachethemes_event_calendar\view\front\default.php

    On line 5-9 there's this html:

    <div id="stec-init-preloader-<?php esc_attr_e($calendar); ?>" class="stec-init-preloader">
        <div class="stec-init-preloader-sprite"></div>
        <span class="stec-init-preloader-count">0</span>
        <span class="stec-init-preloader-txt"><?php esc_html_e('Events loaded', 'stec'); ?></span>
    </div>

    I guess you could edit it to:

    <div id="stec-init-preloader-<?php esc_attr_e($calendar); ?>" class="stec-init-preloader">
        <p><?php esc_html_e('Loading events...','stec'); ?></p>
    </div>




    Stachethemes Developer