Last active
December 5, 2025 14:51
-
-
Save xlplugins/f2815a2dd5ab9ecede7ea68ebfc84cd9 to your computer and use it in GitHub Desktop.
Funnelkit Checkout: Change the cart Link url using Filter Hook
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
| add_filter( 'wfacp_return_to_cart_link', function( $cart_url ) { | |
| // Customize the cart URL | |
| return '/shop/'; | |
| }, 10, 1 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment