Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save AnanthFlycart/d19364c2ca4a4e4eb6c3620cbc0f3f16 to your computer and use it in GitHub Desktop.

Select an option

Save AnanthFlycart/d19364c2ca4a4e4eb6c3620cbc0f3f16 to your computer and use it in GitHub Desktop.
CUW: FBT redirect to cart page
add_action('cuw_fbt_products_added_to_cart', function () {
if (function_exists('wp_redirect') && function_exists('wc_get_cart_url')) {
wp_redirect(wc_get_cart_url());
exit;
}
});
@AnanthFlycart

Copy link
Copy Markdown
Author

NOTE: It requires Checkout Upsell v1.4.2 or later

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment