Can't drag n drop anything into the page

When I try to use the builder I can drag but not drop elements from the builder menu.

I’m working within a custom theme that someone else built. I’ve done the plugin deactivation and the problem persisted. I switched themes to 2011 and the problem was resolved. So I know the issue is in the theme somewhere.

I’m using the latest version of Chrome.
The page I’m working on is here http://rosevillechamber.com/home/

[Content Hidden]

Funny that this was posted today… I’m also seeing the same issue with my own custom theme.

Hi Shaun,

The issue you have is that your theme doesn’t use the WordPress function the_content() in a loop which is required to use Beaver Builder.

To resolve your issue, you’re going to want to speak to your theme author and ask them to create a template including this. Then you can set that template to your page and use Beaver Builder.

This is an example of the_content() function in a loop.

if(have_posts()) : while(have_posts()) : the_post();
    the_content();
endwhile; endif;

Pass this onto your theme author and they should be able to resolve this for you.

Thanks,
Danny

That was it. Thanks Danny

No problem, Devin. Happy to help!

Thanks,
Danny

Thanks as well! Marking as resolved.