I want to display some content on my single product page below the product summary and above the tabs with the review
I use this guide as a reference for the hooks, so I thought woocommerce_after_single_product_summary would be the right one. But alas, it displays my content right at the bottom of the product page.
The full code I use is:
function product_summary() {
echo '<h2>Test!</h2>';
}
add_action( 'woocommerce_after_single_product_summary', 'product_summary', 11);
All the other hooks I tried work perfectly so I don't get why this one doesn't. I do use the plugin 'custom tabs' so that might interfere (?)