/** * Show default short description if empty */ add_action('woocommerce_single_product_summary', 'cc_short_description_if_empty', 21); function cc_short_description_if_empty() { global $post; if (empty ($post->post_excerpt) ) { $post_excerpt = '

'; $post_excerpt .= 'This is the default, global, short description.
It will show if no short description has been entered!'; $post_excerpt .= '

'; echo $post_excerpt; } }