screenshot of what i am trying to say I want to add some text and pictures after the tab section and before "you may also like..." section in a woocommerce single product page.
I got to know about two hooks:
woocommerce_after_single_product_summary
woocommerce_after_single_product
but in both cases, content is adding after "you may also like..." section
I tried this below code but text in showing after "you may also like..." section.
function add_text_in_between(){
echo 'i want to show immediately after tab section but before "you may also like..." section';
}
add_action('woocommerce_after_single_product', 'add_text_in_between');