Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save FrancoStino/8824cd2c133ca11b4ef14e32a9b7f88f to your computer and use it in GitHub Desktop.
Save FrancoStino/8824cd2c133ca11b4ef14e32a9b7f88f to your computer and use it in GitHub Desktop.
Show Description When Short Description Empty - WooCommerce
<?
/**
* @snippet Show Description When Short Description Empty - WooCommerce
*/
add_action( 'woocommerce_single_product_summary', 'bbloomer_echo_short_desc_if_empty', 21 );
remove_filter( 'the_excerpt', 'bbloomer_echo_short_desc_if_empty' );
/*add_filter( 'the_excerpt', 'bbloomer_echo_short_desc_if_empty' );*/
function bbloomer_echo_short_desc_if_empty() {
global $post;
if ( empty ( $post->post_excerpt ) ) {
the_content();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment