Skip to content

Instantly share code, notes, and snippets.

@BFTrick
Created May 6, 2016 21:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BFTrick/d35e3b5d1776da6b78b11fdac503b752 to your computer and use it in GitHub Desktop.
Save BFTrick/d35e3b5d1776da6b78b11fdac503b752 to your computer and use it in GitHub Desktop.
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