Last active
July 18, 2023 17:19
-
-
Save nielslange/7d827ff3a1e446cf2f347fddd5abe7e6 to your computer and use it in GitHub Desktop.
Order Summary Items filter » cartItemClass
This file contains 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
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. | |
// We must return the original value we received here. | |
if ( args?.context !== 'summary' ) { | |
return value; | |
} | |
return 'my-custom-class'; | |
} | |
} ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment