Remove price and stock from Google results
-
Hello,
I’d like to remove price and stock info from the Google reults page (https://imgur.com/a/8fe2FJy). I have added this code in my functions.php but still they show up in the snippets. How can I remove them?
my codefunction remove_output_structured_data() { remove_action( 'wp_footer', array( WC()->structured_data, 'output_structured_data' ), 10 ); // Structured data from frontend pages remove_action( 'woocommerce_email_order_details', array( WC()->structured_data, 'output_email_structured_data' ), 30 ); // Data from emails } add_action( 'init', 'remove_output_structured_data' );Thank you
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
The topic ‘Remove price and stock from Google results’ is closed to new replies.