Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1323469

    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

    #1323473

    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

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.