Last active
July 16, 2018 12:41
-
-
Save patrickposner/19038acbf64b365c8be575e5d8060a2f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* 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