Hello!
I added a button next to “add to cart” on our Companies Website to offer special pricing.
Now I’m stuck trying to make the button link to our contact page or set it up to make a direct phone call.
What is the best thing you recommend I do?
add_action(‘woocommerce_after_add_to_cart_button’,’cmk_additional_button’);
function cmk_additional_button() {
echo ‘<button type=”submit” class=”button alt”>Promo Pricing Available – CALL NOW!</button>’;
}