Last active
February 24, 2019 04:26
-
-
Save gstricklind/c43117c6fa84d6d7681aaf0343f9f14b to your computer and use it in GitHub Desktop.
The Content File to Add Beaver Builder Editable Content to Single Product Pages
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
////https://ginastricklind.com/make-beaver-builder-work-on-woocommerce-product-pages/ | |
do_action( 'fl_before_post' ); ?> | |
<?php do_action( 'fl_before_post_content' ); ?> | |
<div class="fl-post-content clearfix" itemprop="text"> | |
<?php | |
the_content(); | |
?> | |
</div><!-- .fl-post-content --> | |
<?php do_action( 'fl_after_post_content' ); ?> | |
<?php do_action( 'fl_after_post' ); ?> | |
<!-- .fl-post --> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment