Home Forums Basel support forum Text above & beneath add to cart button on Product page Reply To: Text above & beneath add to cart button on Product page

#7002

Artem Temos
Keymaster

Hello,

Thank you so much for using our theme and contacting our support center.

You can try to add this code snippet to the functions.php file to display some texts next to you button


add_action( 'woocommerce_single_product_summary', function() {
   echo 'TEXT BEFORE BUTTON';
}, 25 );

add_action( 'woocommerce_single_product_summary', function() {
   echo 'TEXT AFTER BUTTON';
}, 35 );

Regards