Last active
April 25, 2017 08:41
-
-
Save majeedraza1/10776a69f8a21c09eedf41ffdb2dd7e8 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Remove the default WooCommerce 3 JSON/LD structured data format | |
*/ | |
function remove_output_structured_data() { | |
remove_action( 'wp_footer', array( WC()->structured_data, 'output_structured_data' ), 10 ); // Frontend pages | |
remove_action( 'woocommerce_email_order_details', array( WC()->structured_data, 'output_email_structured_data' ), 30 ); // Emails | |
} | |
add_action( 'init', 'remove_output_structured_data' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment