admin管理员组

文章数量:1290135

I want to program the Add to Cart button, on a product page, so when the customer press on it, it skips the Cart & Checkout pages and send him directly to the PayPal payment gateway.

Not spending time on the Cart page, nor filling details on the Checkout page.
How can I do this?

I want to program the Add to Cart button, on a product page, so when the customer press on it, it skips the Cart & Checkout pages and send him directly to the PayPal payment gateway.

Not spending time on the Cart page, nor filling details on the Checkout page.
How can I do this?

Share Improve this question edited Oct 20, 2013 at 17:20 brasofilo 22.1k8 gold badges70 silver badges264 bronze badges asked Oct 20, 2013 at 13:25 MatanMatan 11 bronze badge
Add a comment  | 

2 Answers 2

Reset to default 2

A solution can be found in the function woocommerce_add_to_cart_action. We have to chain two filters. In the first, we check for the product ID, if it's one of a list we add the redirect.

add_action( 'woocommerce_add_to_cart_validation', 'check_ids_wpse_119466', 10, 3 );

function check_ids_wpse_119466( $true, $product_id, $quantity ) 
{
    # Not our products, bail out
    # Adjust the products IDs
    if( !in_array( $product_id, array( 1306,1303 ) ) ) // <------ ADJUST LIST
        return $true;

    add_filter( 'add_to_cart_redirect', 'redirect_wpse_119466' );
    add_filter( 'allowed_redirect_hosts', 'whitelist_wpse_119466' );
    return $true;
}

function redirect_wpse_119466( $url )
{
    return 'http://paypal';
}

function whitelist_wpse_119466( $hosts )
{
    $hosts[] = 'paypal';
    return $hosts;
}

There's a third filter that we need to add, and it tells WordPress that PayPal is a safe host to redirect.

Yes, the list of products has to be made by hand. Or add an option somewhere in the theme, in a plugin or even WordPress settings to put this values (with a multiple selection field).

Related: Where do I put the code snippets I found here or somewhere else on the web?

create a paypal smart button(buy or add to cart) from paypal and paste the HTML code in the website (in HTML )..on click, it will redirect to Paypal page for login and payment processing.its a simple process.

本文标签: pluginsMaking the 39add to cart39 button redirect to PayPal