-
Hi!
I’m trying to remove meta property product:price:amount at single product page when quantity in the URL parameter is > 1.
My code:
//* Remove meta propertys when quantity > 1 *//
function custom_remove_rank_math_meta_tags() {
// Get 'quantity' from URL
$quantity = isset($_GET['quantity']) ? intval($_GET['quantity']) : 1;if ($quantity > 1) {
add_filter( "rank_math/opengraph/product/price/amount", function( $content ) {
return false;
});
}
}
add_action('wp', 'custom_remove_rank_math_meta_tags');Can you help me?
The ticket ‘Hide Meta Property product:price:amount’ is closed to new replies.