• I’m using rank math with WooCommerce, I’ve tried to remove below meta tags

    <meta property="product:price:amount" content="120" />
    <meta property="product:price:currency" content="USD" />

    I found This article, but it sounds it removes all rank math tags.

    How can I remove product:price:amount and product:price:currency meta tags?

Viewing 1 replies (of 1 total)
  • Plugin Support Rank Math Support

    (@rankmathteam)

    Hello @pars0097,

    Thank you for contacting the support.

    You can use the following filters to remove the product:price meta tags:

    add_filter( "rank_math/opengraph/facebook/product_price_amount", function( $content ) {
    return '';
    });

    add_filter( "rank_math/opengraph/facebook/product_price_currency", function( $content ) {
    return '';
    });

    Here is how to add a filter to your site: https://rankmath.com/kb/wordpress-hooks-actions-filters/

    Hope that helps.

Viewing 1 replies (of 1 total)
  • The topic ‘Delete Seo Tags’ is closed to new replies.