Skip to content

Instantly share code, notes, and snippets.

@patrickposner
Last active July 16, 2018 12:41
Show Gist options
  • Select an option

  • Save patrickposner/19038acbf64b365c8be575e5d8060a2f to your computer and use it in GitHub Desktop.

Select an option

Save patrickposner/19038acbf64b365c8be575e5d8060a2f to your computer and use it in GitHub Desktop.
/* get rid of all information after item title and quantity */
add_filter( 'woocommerce_de_additional_item_string', 'gm_remove_each_information' );
function gm_remove_each_information( $return ) {
$return = '';
return $return;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment