Skip to content

Instantly share code, notes, and snippets.

@leewillis77
Created December 3, 2018 11:21
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 leewillis77/64e9291d601e76d35d7f1a24f6f2d523 to your computer and use it in GitHub Desktop.
Save leewillis77/64e9291d601e76d35d7f1a24f6f2d523 to your computer and use it in GitHub Desktop.
Use the short product description instead of description (WooCommerce 3.0+)
<?php
function lw_woocommerce_gpf_description_type( $type ) {
return 'short';
}
add_filter( 'woocommerce_gpf_description_type', 'lw_woocommerce_gpf_description_type' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment