In Woocommerce I am using the following code to add a custom text under add to cart:
add_action( 'woocommerce_after_add_to_cart_button', 'content_after_addtocart_button_func' );
function content_after_addtocart_button_func() {
// Echo content.
echo '<div style="font-size:10px;"><em>(*Contact us for bulk purchase enquiry)</em></div>';
}
But It is displayed in one line like in this screenshot:
How can I have it under the add to cart button?