Reputation: 49
I need a functionality to add multiple products to the cart by hitting only one URL. This functionality is provided in Shopify.
Is there any similar functionality in BigCommerce that I can use to add multiple products to cart using single URL?
Upvotes: 4
Views: 133
Reputation: 345
Hey so there is a couple of ways you might achieve this.
You can direct straight to the one-page checkout by doing something like...
{URL}/cart.php?action=buy&sku=SKU1&sku=SKU2
You could add the products to the cart by doing...
{URL}/cart.php?action=add&sku=SKU1&sku=SKU2
There are a couple of other options that you can see here.
Upvotes: 1
Reputation: 1866
Adding multiple products to the cart using a URL would require customization and be accomplished through ajax requests. It is not native functionality in Bigcommerce.
Upvotes: 0