Skip to content

Instantly share code, notes, and snippets.

@BFTrick
Created May 6, 2016 21:12
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
Add a call to order button to the single product page
<?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