fixed my own problem..
it was calling a different template page for the home page that was missing..
<?php wp_footer(”); ?>
at the end.
my home page code :
<?php
/*
Template Name: Home Page
*/
?>
<?php get_header(); ?>
<?php
echo do_shortcode(‘[image-carousel category=”home”]’);
?>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<?php the_content(); ?>
<?php endwhile; else: ?>
<p><?php _e(‘Sorry, this page does not exist.’); ?></p>
<?php endif; ?>
<?php get_footer(); ?>
<?php wp_footer(”); ?>
Hi i’m having the same issue… Ive tried all of the above and its only not working on my homepage. I tried adding the modal in manually which didn’t work either. it shows up in the code but the button wont activate it. Any suggestions?