?? GreyFile — Mystic File Browser

Current path: home/webdevt/www/wdp/wp-content/plugins/brizy/compatibilities/



?? Go up: /home/webdevt/www/wdp/wp-content/plugins/brizy

?? Viewing: live-composer-page-builder.php

<?php
/**
 * Compatibility with Page Builder: Live Composer plugin: https://wordpress.org/plugins/live-composer-page-builder/
 */
class Brizy_Compatibilities_LiveComposerPageBuilder {

	public function __construct() {
		add_action( 'wp', [ $this, 'wp' ] );
	}

	public function wp() {
		if (
			! Brizy_Public_Main::is_editing()
			&&
			! Brizy_Editor_Entity::isBrizyEnabled( get_the_ID() )
			&&
			! Brizy_Admin_Templates::getTemplate()
		) {
			return;
		}

		// Conflict with Live Composer builder when it has set a template for single post.
		remove_filter( 'the_content', 'dslc_filter_content', 101 );
		// Remove button "Edit Template" from single when it is builded with brizy.
		remove_filter( 'wp_footer', [ 'DSLC_EditorInterface', 'show_lc_button_on_front' ] );
	}
}


??

??