Home Forums WoodMart support forum Problem with loading CSS elementor? Reply To: Problem with loading CSS elementor?

#349351

Artem Temos
Keymaster

Try to add the following PHP code snippet to the child theme functions.php file to fix this

add_action(
	'wp',
	function () {
		if ( ! function_exists( 'YoastSEO' ) ) {
			return;
		}

		remove_filter( 'category_description', [ YoastSEO()->classes->get( Yoast\WP\SEO\Integrations\Front_End\Category_Term_Description::class ), 'add_shortcode_support' ] );
		remove_filter( 'term_description', [ YoastSEO()->classes->get( Yoast\WP\SEO\Integrations\Front_End\Category_Term_Description::class ), 'add_shortcode_support' ] );
	}
);