is_product() - страница товара
is_page() можно как вариант
add_filter('the_content', 'specific_no_wpautop', 9);
function specific_no_wpautop($content) {
if (is_product()) { // or whatever other condition you like
add_filter( 'the_content', 'wpautop' );
return $content;
} else {
remove_filter( 'the_content', 'wpautop' );
return $content;
}
}