• Hi, this is basically similar to this issue: the loader loads forever, and when I refresh the page it just start over again. Even changing the line #26 of the .php file does not work.
    Do you have additional suggestions?
    Thanks

    • This topic was modified 3 years, 5 months ago by soap2g.
Viewing 3 replies - 1 through 3 (of 3 total)
  • I have the same issue in Firefox. Changing the line 26 nor working. Thanks for your help or an update…

    Thread Starter soap2g

    (@soap2g)

    Hi!
    @misasaaa I found a temporary solution that overrides the plugin. Add in functions.php this code:

    add_action('wp_footer', function(){ ?>
      <script>
        (function($){
          $(function () {
              setTimeout(function() {
    		jQuery('body .smart-page-loader').fadeOut(500, function() {
    				jQuery('body .smart-page-loader').css('opacity', 0);
    		});
        }, 1500);
          });
        })(jQuery);
      </script>
      <?php
    });

    After 1500ms the animation will fade out. You can vary the time by changing that 1500 at the end of the script.
    Hope it’s useful,

    cheers

    Wow, thank you very much @soap2g it finally worked!

    Love it ??

    M.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Loader hangs forever’ is closed to new replies.