Skip to content

Instantly share code, notes, and snippets.

@plugin-republic
Created September 28, 2020 09:02
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 plugin-republic/44946bf163035290c27cf71032f0a9e3 to your computer and use it in GitHub Desktop.
Save plugin-republic/44946bf163035290c27cf71032f0a9e3 to your computer and use it in GitHub Desktop.
<?php
/**
* Don't replace 'Remove' link with arrow for child items in the cart
*/
function tester_remove_child_arrows() {
remove_action( 'woocommerce_cart_item_remove_link', 'pewc_cart_item_remove_link', 10, 2 );
}
add_action( 'init', 'tester_remove_child_arrows' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment