Global Section format
Hi, I use a global section as header/menu.
https://rym3hy.serveravatartmp.com/
It works perfectly for every page/post, but when I open this url
https://rym3hy.serveravatartmp.com/tc_events/nights-of-classic/
the cart has a different format.
Can you please check why?
Thanks. Best
-
Hi
I looked through your website; but could not find a page with a different header. All pages including the Cart and the Checkout pages appear to have the same header. Please see this video for my test https://jmp.sh/GUQIADO5 Can you please help me with the steps I must follow to see the page with a different header?
0 -
Hi KC George,
you couldn’t find any difference because meanwhile I have solved the problem.Basically, the plugin Tickera utilizes wpautop to ensure all double line breaks is converted to paragraphs for the CPT tc_events.
Unfortunately, for some reasons, it affects also the Brizy mini cart.My solution has been to add this snippet to disable wcautop
add_action( 'template_redirect', 'tc_disable_wpautop' );
function tc_disable_wpautop() {
global $post, $post_type;
if ( $post && isset( $post->post_type ) && 'tc_events' == $post->post_type && $post_type && 'tc_events' == $post_type ) {
remove_filter( 'tc_the_content', 'tc_the_content' );
}
}Not a perfect soluction but something I can live with for the moment.
Please keep me updated if there’s some Brizy update that address this case.
Thanks. Best
0 -
Hi
Can you record a video for us showing the issue with the header when using the Tickera plugin? You will need to temporarily disable the above code. We will pass it on to our developers to see what we can do to fix this issue.
0
Please sign in to leave a comment.
Comments
3 comments