Skip to content

Instantly share code, notes, and snippets.

@helgatheviking
Created July 12, 2016 20:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save helgatheviking/90a0bde30fe06b6ba78829319adb4b7c to your computer and use it in GitHub Desktop.
Save helgatheviking/90a0bde30fe06b6ba78829319adb4b7c to your computer and use it in GitHub Desktop.
Add the product's short description to the Mix and Match table
add_action( 'woocommerce_mnm_row_item_description', 'mnm_add_short_description', 15 );
function mnm_add_short_description( $mnm_product ){
if ( ! $mnm_product->post->post_excerpt ) {
return;
}
?>
<div itemprop="description">
<?php echo apply_filters( 'woocommerce_short_description', $mnm_product->post->post_excerpt ) ?>
</div>
<?php
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment