Skip to content

Instantly share code, notes, and snippets.

@grola
Last active February 6, 2018 09:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save grola/626a6f61ee5f9b56fcb54b849ae1fd55 to your computer and use it in GitHub Desktop.
Save grola/626a6f61ee5f9b56fcb54b849ae1fd55 to your computer and use it in GitHub Desktop.
Remove offers from structured data for Variable Products
<?php
add_action( 'woocommerce_structured_data_product', 'studiowp_woocommerce_structured_data_product', 10, 2 );
function studiowp_woocommerce_structured_data_product( $markup, $product ) {
if ( $product->is_type('variable') ) {
unset( $markup['offers'] );
}
return $markup;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment