Skip to content

Instantly share code, notes, and snippets.

@nielslange
Last active July 18, 2023 17:19
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 nielslange/7d827ff3a1e446cf2f347fddd5abe7e6 to your computer and use it in GitHub Desktop.
Save nielslange/7d827ff3a1e446cf2f347fddd5abe7e6 to your computer and use it in GitHub Desktop.
Order Summary Items filter » cartItemClass
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