Comments mb9463x started the conversationMay 29, 2020 at 4:06pmIs 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. 877Zhivko repliedMay 30, 2020 at 9:59amOpen file stachethemes_event_calendar\view\front\default.phpOn 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 Sign in to reply ...
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.
Open file stachethemes_event_calendar\view\front\default.php
On line 5-9 there's this html:
I guess you could edit it to:
Stachethemes Developer