Skip to content

Instantly share code, notes, and snippets.

@Inzman
Created June 11, 2020 06:24
Show Gist options
  • Save Inzman/a97a18cf44a5dfe28f6a7d0c1997999d to your computer and use it in GitHub Desktop.
Save Inzman/a97a18cf44a5dfe28f6a7d0c1997999d to your computer and use it in GitHub Desktop.
Filter Woocommerce short description
// 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>&nbsp;</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