Home › Forums › Basel support forum › Product Page Gallery Image › Reply To: Product Page Gallery Image
March 9, 2017 at 5:06 pm
#10657
Les
Participant
The code snippet below is adding the text AFTER the ADD TO CART button.
Is there any way to add a text link BEFORE the ADD TO CART button? Just below the price on a variable product?
Thanks so much!
Les
add_action(‘woocommerce_single_product_summary’, ‘my_text_after_button’,38);
function my_text_after_button() {
?>
<div class=”place_order_by_phone”>
<b>Place Order By Phone:</b> <span class=”phone_icon”>+91-261-2507700</span> <span class=”whatsapp_icon”>+91-7285880241</span>
</div>
<?php
}