Created
March 26, 2019 14:30
-
-
Save akther80/6a63c70ef69721bcd9a359be88e8730d to your computer and use it in GitHub Desktop.
Electro v2 - Remove star rating in product item
This file contains hidden or 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
add_action( 'init', 'ec_child_remove_product_item_star_rating', 10 ); | |
function ec_child_remove_product_item_star_rating() { | |
remove_action( 'woocommerce_after_shop_loop_item_title', 'electro_template_loop_rating', 70 ); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment