Hello,
in this very useful WooCommerce Visual Hook Guide: Single Product Page https://www.businessbloomer.com/woocommerce-visual-hook-guide-single-product-page/
it is stated that there is a location that can be hooked that is called “woocommerce_before_variations_form”, but this is based on Storefront theme
I want to do something there, can you please tell me the name of that position in Enfold terms?
Thank you
Mauro
Hey Mauro,
Thanks for contacting us!
Please add following code to bottom of functions.php file of your child theme and adjust it as needed
add_action('woocommerce_before_variations_form', 'new_woocommerce_before_variations_form');
function new_woocommerce_before_variations_form(){
echo "<h1>Adding title here</h1>";
}
Best regards,
Yigit