• Resolved maddinb

    (@maddinb)


    Hi,

    when worked locally on the site everything worked well. But after migrating the site to the host the plugin doesn’t work. It doesn’t scroll to the sections anymore and the highlight class also not get added.
    What could be wrong?

    regards

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author malihu

    (@malihu)

    Hi,

    Your theme template HTML is not correct. It’s missing the footer.php. If you view the source of your page you’ll see:

    <? get_footer();
    
    ?>

    This is not correct. It should be:

    <?php get_footer();
    
    ?>

    As it is now, the html and body tags are not closed, all WordPress footer functions are missing and the site footer content is missing too.

    Thread Starter maddinb

    (@maddinb)

    Awesome thank you! wondering why this didn’t cause an issue when working locally. Anyway, now all good!

    regards

    Plugin Author malihu

    (@malihu)

    You’re welcome ??

    Not sure why it worked locally… it shouldn’t work because the plugin’s scripts require the WordPress footer function.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘plugin not working on production mode’ is closed to new replies.