Created
September 26, 2023 10:29
-
-
Save codersaiful/ce45a7c7cc5618f839b29c3831646e06 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 | |
/** | |
* add following code to your theme's functions.php file | |
*/ | |
add_filter('wpt_view_cart_link','wpt_custom_my_link_view_cart_footer_cart'); | |
function wpt_custom_my_link_view_cart_footer_cart(){ | |
//your custom link here | |
return 'https://google.com/'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment