WooCommerce: How can I add a certain product to the cart and redirect to the cart from a non-shop page?

admin2025-06-07  64

I want to promote a certain product on a non-shop page. I want to have a Buy now link on that page, which, when clicked, would add the product to the cart and automatically reload the page and redirect the customer to the cart. This should be done only for that certain product and should not be enabled for all products (so the Redirect to the cart page after successful addition option should NOT be set to TRUE).

I want to promote a certain product on a non-shop page. I want to have a Buy now link on that page, which, when clicked, would add the product to the cart and automatically reload the page and redirect the customer to the cart. This should be done only for that certain product and should not be enabled for all products (so the Redirect to the cart page after successful addition option should NOT be set to TRUE).

Share Improve this question asked Oct 18, 2018 at 19:33 manifestormanifestor 3136 silver badges15 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 0

You can create "add to cart" links for WooCommerce using this pattern on simple links:

http://example/cart/?add-to-cart=<product ID>&quantity=<number of quantity>

This example will work with simple products.
If you want to use products with variations you need to add some more values to the URL like:

http://example/cart/?add-to-cart=123&variation_id=456&attribute_pa_colour=black

If you enter the slug of the cart page in this url, here: /cart/, it should redirect to the cart.

To add a product to the cart without redirecting:

http://example/?add-to-cart=<product ID>
转载请注明原文地址:http://conceptsofalgorithm.com/Algorithm/1749248744a317601.html

最新回复(0)