Removing the title tag not working
-
I’m using Elementor PRO Version 3.2.0 adn YOAST SEO Version 16.0.1
Following these instructions https://labs.thecreatology.com/squirrel/remove-wp-yoast-seo-meta-tags-using-wordpress-filter.html I successfully managed to remove the metadescription, the opengraph tags etc from the single product page for specific product categoriesNow I try to remove the <title> tag from the Single Product Page
I tried with each of the following filters:
– add_filter( ‘wpseo_title’, ‘cde_remove_yoast_meta’ );
– add_filter( ‘wpseo_title’, ‘__return_false’ );
– add_action( ‘wpseo_frontend_presenters’, ‘cde_remove_title_presenter’ );
None of them works.
The title tag is still there:
<!– This site is optimized with the Yoast SEO plugin v16.0.1 – https://yoast.com/wordpress/plugins/seo/ –>
<title>Lorem Ipsum 1 – Research Web Store</title>So how could I remove the title tag?
- The topic ‘Removing the title tag not working’ is closed to new replies.