I want to remove wordpress html-formatting in woocommerce product short description. It add p tag everywhere. I know how to do it in wp posts and pages
remove_filter( 'the_excerpt', 'wpautop' );
but it didn't work with woocommerce product short desc
i was trying to use this code
remove_filter( 'woocommerce_single_product_summary', 'wpautop' );
Thank you anyway!
wp_autop()
This was where a similar but dieefernt thing happened stackoverflow.com/questions/33850117/… – Steveremove_filter( 'woocommerce_single_product_summary', 'wpautop' ); add_filter( 'woocommerce_single_product_summary', 'wpautop' , 99 );
might be a more correct way to get there if it works: ipanelthemes.com/kb/misc/wordpress/… – Stevewp_autop()
function: wordpress.stackexchange.com/questions/1/… – Steve