Skip to content

Instantly share code, notes, and snippets.

@agusmu
Created November 28, 2013 09:59
Show Gist options
  • Save agusmu/7689652 to your computer and use it in GitHub Desktop.
Save agusmu/7689652 to your computer and use it in GitHub Desktop.
WooCommerce - Add custom block to the end of product summary
add_action( 'woocommerce_single_product_summary', 'prima_custom_block_product_summary', 50 );
function prima_custom_block_product_summary() {
?>
YOUR CUSTOM HTML CODE HERE
<?php
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment