Last active
July 18, 2023 17:19
-
-
Save nielslange/7d827ff3a1e446cf2f347fddd5abe7e6 to your computer and use it in GitHub Desktop.
Revisions
-
nielslange revised this gist
Jul 18, 2023 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,6 +1,6 @@ const { registerCheckoutFilters } = window.wc.blocksCheckout; // Adjust cart item class of the order summary items. registerCheckoutFilters( 'example-extension', { cartItemClass: ( value, extensions, args ) => { // Return early since this filter is not being applied in the Summary context. -
nielslange created this gist
Jul 18, 2023 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,13 @@ const { registerCheckoutFilters } = window.wc.blocksCheckout; // Adjust cart item class of the cart line items. registerCheckoutFilters( 'example-extension', { cartItemClass: ( value, extensions, args ) => { // Return early since this filter is not being applied in the Summary context. // We must return the original value we received here. if ( args?.context !== 'summary' ) { return value; } return 'my-custom-class'; } } );