Skip to content

Instantly share code, notes, and snippets.

@MervinHernandez
Created May 1, 2021 14:38
Show Gist options
  • Save MervinHernandez/93e528f5d5ddb5d31f869830510d6b1b to your computer and use it in GitHub Desktop.
Save MervinHernandez/93e528f5d5ddb5d31f869830510d6b1b to your computer and use it in GitHub Desktop.
<?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