Hello Andrew, I tried to wrap my loop in a div like that, and included the button after my loop wrap:
<div id="ajax">
<?php
// Start the Loop.
while ( have_posts() ) : the_post();
...
// End the loop.
endwhile;
?>
</div><!-- closing the #ajax element -->
<?php load_more_button(); ?>
and when I inspect it, the load more button is there but it is invisible. It has the class class=”elm-button ajax-inactive” … any ideas? :/