Compatibility with Vimeography Pro plugin

I manage a site that uses the Vimeography Pro plugin (http://vimeography.com/add-ons/vimeography-pro/) to display Vimeo videos using a shortcode.

When the Beaver Builder plugin is activated, the page that contains the Vimeography shortcode, [vimeography id=“1”], gets stuck in an infinite loop of the content area. If I deactivate Beaver Builder, it works normally.

Below, I’ve included the code for the page template that is being used.

<?php
/*
Template Name: Full Width
*/

get_header(); ?>

<div id="main">
				<div class="block-holder">
					
                    <?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
                        <?php 	
                        //get the post thumbnail for this post
                        $image_id = get_post_thumbnail_id();  
                        if ($image_id != ""){ ?>
                        
                        <?php
                        $image_url = wp_get_attachment_image_src($image_id,'full');  
                        $image_url = $image_url[0];
                        ?>
                        <img src="<?php echo $image_url; ?>" id="featured_image" />

                        <?php } ?>
                    <div id="content-full">
                    	<p><?php if (function_exists('dimox_breadcrumbs')) dimox_breadcrumbs(); ?></p>
                        <h1 class="title-content"><?php the_title(); ?></h1>
						<?php the_content(); ?>
                        
                        <?php endwhile; // end of the loop. ?>
                        
                        <?php //comments_template( '', true ); ?>
                        <?php comment_form(); ?>
                        
					</div><!-- /content end -->			
				</div><!-- /block-holder end -->
			</div><!-- /main end -->

<?php get_footer(); ?>

And here is a link to that page: http://discoverychurch.com/videos/baptisms/

Hey Daniel,

Sorry to hear about the issues! Are you getting any console errors that you could send along? If you could provide temporary login/password so we can take a look, that would be great! Feel free to mark as a private reply when doing so.

Best,
Billy

[Content Hidden]

Thanks Daniel, interesting. I can’t get the builder to load on that page at all so we’ll escalate this as a bug and look into it as soon as we can. We’ll provide an update soon.

Best,
Billy

[Content Hidden]

[Content Hidden]

Hi Daniel,

Ok, we have identified an issue and are going to release an update a bit later this week. Thanks for your patience!

Best,
Billy

Hi Daniel,

The update that fixes this is now out. Let us know how it goes for you!

Thanks,
Justin

Hi Justin,

It appears to be working great now. Thanks for taking care of this so quickly!

Daniel