Hi @sunnygirl216,
I’ve seen this a lot recently so I added a filter to help fix it. But first, are you using a page builder plugin? I’ve only seen this issue related to page builder plugins and I’d like to learn more about which plugins conflict with ours.
Here is the filter: 'yikes_woo_use_the_content_filter'
And here is an example of how to use it:
add_filter( 'yikes_woo_use_the_content_filter', 'yikes_woo_do_not_use_the_content_filter', 10, 1 );
function yikes_woo_do_not_use_the_content_filter( $use_the_content ) {
return false;
}
That should fix half of the issue – you should be able to see your tab’s content now, but things like embedded youtube videos will not work. There’s a second filter we need to add to enable embedded content. Please try to use this filter first and if your content is showing we can do the next one.
Let me know if you have any questions or need help adding this filter function!
Kevin.