Proceed to checkout button redirects

Maus010

Member
May 4, 2019
51
19
8
Hi Guys,

I hope someone can help me with my folowing issue.

I want to change the behaviour of the "proceed to checkout" button for my wordpress/woocommerce website.
When you click that button it will take you directly to the checkout page (duh).
But I want to change that into this:

1. Logged-in users are redirected to page "A" (checkout page)
2. Logged-out users are redirected to page "B" (custom page where they can log in or continue as guest)

Is this possible? And what would that code look like?

Thanks in advance! (y)
 

people=shit

New member
Apr 24, 2020
15
5
3
You can use the following hook

add_filter( 'add_to_cart_redirect', 'jokontol_add_to_cart_redirect' );
function jokontol_add_to_cart_redirect() {
global $woocommerce;
$jokontol_redirect_checkout = $woocommerce->cart->get_checkout_url();
return $jokontol_redirect_checkout;
}

I believe woocommerce has login conditional on the checkout page so you don't have to check the manually.
 

Maus010

Member
May 4, 2019
51
19
8
To bad. This piece of code doesn't work for me :cry:

It breaks my site. When I add a product to my cart, the "added to cart" popup doesn't show anymore. Also my cart stays empty until I refresh the page. Only then the item appears in my cart.

Also both logged in and logged out users are being redirected to the same checkout page.
 

About us

  • Our community has been around for many years and pride ourselves on offering unbiased, critical discussion among people of all different backgrounds. We are working every day to make sure our community is one of the best.

Quick Navigation

User Menu