Created
February 12, 2019 05:38
-
-
Save akther80/a2f1247500692a8ee14483578bd00355 to your computer and use it in GitHub Desktop.
Electro v2 - Remove product availability in single product page
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_availability_in_single_product' ); | |
function ec_child_remove_availability_in_single_product() { | |
remove_action( 'woocommerce_single_product_summary', 'electro_template_loop_availability', 10 ); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment