Answers for "add content after add to cart button woo commerce"

0

add content after add to cart button woo commerce

add_action( 'woocommerce_after_add_to_cart_button', 'add_content_after_addtocart_button_func' );

function add_content_after_addtocart_button_func() {

// Echo content.

echo '<div class="second_content">Place your content here!</div>';

}
Posted by: Guest on April-21-2021

Code answers related to "add content after add to cart button woo commerce"

Browse Popular Code Answers by Language