Created
May 6, 2016 21:12
-
-
Save BFTrick/d35e3b5d1776da6b78b11fdac503b752 to your computer and use it in GitHub Desktop.
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