Created
June 11, 2020 06:24
-
-
Save Inzman/a97a18cf44a5dfe28f6a7d0c1997999d to your computer and use it in GitHub Desktop.
Filter Woocommerce short description
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Remove empty paragraphs | |
function filter_woocommerce_short_description2( $post_post_excerpt ) { | |
$post_post_excerpt = str_replace("<p></p>","",$post_post_excerpt); | |
$post_post_excerpt = str_replace("<p> </p>","",$post_post_excerpt); | |
return $post_post_excerpt; | |
}; | |
add_filter('woocommerce_short_description', 'filter_woocommerce_short_description2', 10, 1); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment