Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. <?php
  2. /**
  3. * Turn off WooCommerce Marketplace suggestions
  4. */
  5. add_filter( 'woocommerce_allow_marketplace_suggestions', '__return_false' );
  6.  
  7. /**
  8. * Turn off WooCommerce Feature Plugin notice
  9. */
  10. add_filter( 'woocommerce_show_admin_notice', '__return_false', 'wc_admin_feature_plugin_notice' );
  11.  
  12. /**
  13. * Remove Jetpack Ads
  14. */
  15. add_filter( 'jetpack_just_in_time_msgs', '__return_false' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement