If I set up a separate template for the Privacy Policy page, then it does not apply to this page. How can this be fixed?
Hi Evgeniy,
Thanks so much for your report!
However, I cannot reproduce the issue. Please make sure the page is rendered with Bricks instead of WordPress.
Best regards,
timmse
I have found a solution to this problem. It was in a snippet that conflicts with the output of Bricks templates on pages.
if( 'disable_gutenberg' ){
remove_theme_support( 'core-block-patterns' );
add_filter( 'use_block_editor_for_post_type', '__return_false', 100 );
remove_action( 'wp_enqueue_scripts', 'wp_common_block_scripts_and_styles' );
add_action( 'admin_init', function(){
remove_action( 'admin_notices', [ 'WP_Privacy_Policy_Content', 'notice' ] );
add_action( 'edit_form_after_title', [ 'WP_Privacy_Policy_Content', 'notice' ] );
} );
}