This snippet allows you to display custom content below the product meta. Product meta being the SKU, categories and tags the product belongs to. You may wish to output additional meta which has less importance than the main meta data shown using this guide.
/**
* Snippet Name: WooCommerce Show Custom Content Below Product Meta
* Snippet Author: ecommercehints.com
*/
function ecommercehints_show_custom_content_below_product_meta() {
echo "Custom content here!";
};
add_action( 'woocommerce_product_meta_end', 'ecommercehints_show_custom_content_below_product_meta', 10 );