• Resolved Name

    (@kilazer)


    Hello everyone. Help me solve my problem!
    How to add content after the buy button ?
    hook “woocommerce_after_add_to_cart_button” in a variable product in variable product does not work!

Viewing 1 replies (of 1 total)
  • Plugin Support fizanzvai

    (@fizanzvai)

    Hi @kilazer

    Please use the below code as a snippet (using Code Snippet Plugin) or, put the below code inside child theme’s functions.php-

    function your_content_after_button(){
    	echo "Your content will be here!";
    }
    add_action('woocommerce_after_add_to_cart_quantity', 'your_content_after_button');

    Thank you

Viewing 1 replies (of 1 total)
  • The topic ‘woocommerce_after_add_to_cart_button’ is closed to new replies.