Skip to content

Instantly share code, notes, and snippets.

@leewillis77
Created July 9, 2019 08:00
Show Gist options
  • Save leewillis77/6c96f8d0bc9cf317f20fc9278d207fd6 to your computer and use it in GitHub Desktop.
Save leewillis77/6c96f8d0bc9cf317f20fc9278d207fd6 to your computer and use it in GitHub Desktop.
Remove MSRP from category pages.
<?php
add_action( 'init', function() {
global $woocommerce_msrp_frontend;
remove_action( 'woocommerce_after_shop_loop_item_title', array( $woocommerce_msrp_frontend, 'show_msrp' ), 9 );
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment