Skip to content

Instantly share code, notes, and snippets.

@carlosvarela
Created February 18, 2018 23:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save carlosvarela/eb49628b82ff20e6b1d966281aeb3958 to your computer and use it in GitHub Desktop.
Save carlosvarela/eb49628b82ff20e6b1d966281aeb3958 to your computer and use it in GitHub Desktop.
Remover Stars in Woocommerce
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_rating', 10 );
add_action( 'woocommerce_single_product_summary', 'my_woocommerce_template_single_rating', 10 );
function my_woocommerce_template_single_rating() {
global $product;
if ( $product->post->comment_status === 'open' )
wc_get_template( 'single-product/rating.php' );
return true;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment