Created
November 28, 2013 09:59
-
-
Save agusmu/7689652 to your computer and use it in GitHub Desktop.
WooCommerce - Add custom block to the end of product summary
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
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