Created
October 4, 2023 07:07
-
-
Save codersaiful/cae91aa78d743a4dc23132dc6969ae43 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 | |
/** | |
* To change reset link's text | |
* Use following code to your child theme's functions.php | |
* use any code snippet plugin. | |
* @author: Saiful Islam<[email protected]> | |
*/ | |
add_filter('woocommerce_reset_variations_link','wpt_custom_reset_link_change'); | |
function wpt_custom_reset_link_change() | |
{ | |
return '<a class="reset_variations" href="#">Your Text</a>'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment