Created
October 1, 2025 12:55
-
-
Save plugin-republic/d7c616a7ccfb8e29d3f7a150ea963919 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
| <?php | |
| /** | |
| * Hook: woocommerce_reset_variations_link. | |
| * Modify the HTML for the 'Clear' options link. | |
| */ | |
| function plugin_republic_reset_variations_link( $html ) { | |
| // Modify the $html here | |
| return $html; | |
| } | |
| add_filter( 'woocommerce_reset_variations_link', 'plugin_republic_reset_variations_link', 10, 1 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment