for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Beaverbuilder Compatibility.
*/
class BeaverBuilderCompat {
function __construct() {
add_action( 'init', array( $this, 'beaverbuilder_refresh' ) );
}
* If masterbar module is active force BeaverBuilder to refresh when publishing a layout.
function beaverbuilder_refresh() {
if ( Jetpack::is_module_active( 'masterbar' ) ) {
add_filter( 'fl_builder_should_refresh_on_publish', '__return_true' );
new BeaverBuilderCompat();