Add a call to order button to the single product page
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function patricks_woocommerce_call_to_order_text() { | |
echo '<p>Call to order this product. <strong>123-456-7890</strong>.</p>'; | |
} | |
add_action('woocommerce_single_product_summary','patricks_woocommerce_call_to_order_text', 30); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment