I want to remove meta for the product page

#58864
  • Resolved Anonymous
    Rank Math free

    I want to remove this 3 metas from product page
    <meta property=”product:price:amount” content=”39.00″>
    <meta property=”product:price:currency” content=”CHF”>
    <meta property=”product:availability” content=”instock”>

    I use woocommerve with RankMath
    I tested with product settings and doesn’t seems to work thanks

Viewing 3 replies - 1 through 3 (of 3 total)
  • Alberto
    Rank Math business

    Hello,

    Thank you for contacting Rank Math and sorry for any inconvenience that might have been caused due to that.

    You could try to add the following code at the end of your functions.php file in your active theme:

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

    Looking forward to helping you. Thank you.

    ​​​​​​​

    Anonymous
    Rank Math free

    thanks a lot It worked really nice

    Michael Davis
    Rank Math pro

    Hello,

    We are super happy that this resolved your issue. If you have any other questions in the future, know that we are here to help you.

    If you don’t mind me asking, could you please leave us a review (if you haven’t already) on https://wordpress.org/support/plugin/seo-by-rank-math/reviews/#new-post about your overall experience with Rank Math? We appreciate your time and patience.

    If you do have another question in the future, please feel free to create a new forum topic, and it will be our pleasure to assist you again.

    Thank you.

Viewing 3 replies - 1 through 3 (of 3 total)

The ticket ‘I want to remove meta for the product page’ is closed to new replies.