Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save sandeepwisetr/9a4fe5b129054261d388e74ddd83d59c to your computer and use it in GitHub Desktop.
Save sandeepwisetr/9a4fe5b129054261d388e74ddd83d59c to your computer and use it in GitHub Desktop.
fatal error resolve when page editing with beaver builder elementor is present
add_action( 'wfacp_after_checkout_page_found', function () {
if ( WFACP_Common::is_customizer() ) {
return;
}
$page_design = WFACP_Common::get_page_design( WFACP_Common::get_id() );
if ( 'embed_forms' == $page_design['selected_type'] ) {
if ( ! WFACP_Common::is_customizer() ) {
add_filter( 'wfacp_embed_form_allow_header', '__return_false' );
return;
}
}
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment