How to add "contact us" text under the tag or above the share button on a single product page
I have added another text below the price of the product, it works
add_action( 'woocommerce_before_add_to_cart_form', 'bbloomer_show_return_policy', 20 );
function bbloomer_show_return_policy() {
echo '<p class="rtrn"> See Our License <a href="mysite.com/license/" target="_blank"> Here! </a>
<br /></p>';
}
if to add text below the tag or above the share button it doesn’t work
add_action ( 'woocommerce_after_add_to_cart_button' , 'bbloomer_after_add_to_cart_btn' ) ;
function bbloomer_after_add_to_cart_btn ( ) {
echo '<p class="rtrn"> Contact us <a href="mysite/contact-us/" target="_blank"> Here! </a>
<br /></p>';
}
2
Answers
Try this,
This code is worked for me. Hope this will helps you.
How to add “contact us” text under the tag or above the share button use the following:
Code goes in functions.php file of your active child theme (or active theme). Tested and works.