Created
May 1, 2021 14:38
-
-
Save MervinHernandez/93e528f5d5ddb5d31f869830510d6b1b 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
<?php | |
/* | |
* Add this in functions | |
*/ | |
// -- WooCommerce - Hide product upsells admin notes | |
add_filter('woocommerce_product_related_posts_query', '__return_empty_array', 100); | |
remove_action( 'woocommerce_after_single_product_summary', 'woocommerce_output_related_products', 20 ); | |
// -- JetPack - Hide product upsell admin notices | |
add_filter( 'jetpack_just_in_time_msgs', '__return_false' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment