How to Hide Product Price & Stock From Google indexing?
-
As far as I know Woocommerce generate the schema markup for products to allow Google to show product microdata as Price and Stock.
I need to hide the Product Price & Stock From Google indexing. I found and pasted this code in my function.php two weeks ago file but it doesn’t seem to work.
Can you confirm to me that this is the correct code?
function wc_remove_some_structured_data( $markup ) { unset( $markup['offers'] ); return $markup; } add_filter( 'woocommerce_structured_data_product', 'wc_remove_some_structured_data' );
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘How to Hide Product Price & Stock From Google indexing?’ is closed to new replies.