Using the eCommerce frontend API, you can interact with the native cart and checkout components on your site.
With the eCommerce frontend API, you can:
To use the eCommerce frontend API, import wixEcomFrontend
from the wix-ecom-frontend
module:
import wixEcomFrontend from "wix-ecom-frontend";
It's important to note the following points before starting to code:
You need to add eCommerce functionality to your site.
Upgrade your site to a premium business plan in order to accept payments.
Directs the browser to navigate to the site visitor's Cart Page.
The navigateToCartPage()
function returns a Promise that resolves when the browser successfully navigates to the Cart Page.
function navigateToCartPage(): Promise<void>;
import wixEcomFrontend from "wix-ecom-frontend";
import wixEcomBackend from "wix-ecom-backend";
$w("#myNavigateToCartPageButton").onClick(() => {
// example values for the options object
const options = {
lineItems: [
{
catalogReference: {
// Wix Stores appId
appId: "215238eb-22a5-4c36-9e7b-e7c08025e04e",
// Wix Stores productId
catalogItemId: "3fb6a3c8-988b-8755-04bd-5c59ae0b18ea",
},
quantity: 1,
},
],
};
// The wixEcomBackend.currentCart module is universal.
// You can call its methods in frontend and backend code.
wixEcomBackend.currentCart
.addToCurrentCart(options)
.then(() => {
console.log("item added to cart");
// navigate to cart page after adding item
wixEcomFrontend.navigateToCartPage();
})
.catch((error) => {
console.error(error);
// Handle the error
});
});
Directs the browser to navigate to the site visitor's Checkout Page.
The navigateToCheckoutPage()
function returns a Promise that resolves when the browser successfully navigates to the Checkout Page.
Note: The checkoutId
parameter is required. To get a checkoutId
, use one of the following wix-ecom-backend
functions:
function navigateToCheckoutPage(
checkoutId: string,
options: CheckoutPageOptions,
): Promise<void>;
ID of the checkout to navigate to.
Additional parameters for customizing the checkout flow.
import wixEcomFrontend from "wix-ecom-frontend";
$w("#myNavigateToCheckoutPageButton").onClick(() => {
// Example checkoutId and options values
const checkoutId = "12345678-1234-1234-1234-1234567890ab";
const options = {
skipDeliveryStep: true,
hideContinueBrowsingButton: false,
overrideContinueBrowsingUrl: "https://www.myExampleSite.com/upsellPage",
// override ThankYouPage URL with dynamic orderId parameter
overrideThankYouPageUrl:
"https://www.myExampleSite.com/customThankYouPage/{orderId}",
};
wixEcomFrontend
.navigateToCheckoutPage(checkoutId, options)
.then(() => {
console.log("Navigated successfully");
})
.catch((error) => {
console.error(error);
// Handle the error
});
});
Adds an event handler that runs when the cart changes.
The event handler set by the onCartChange()
function runs when the cart changes.
The onCartChange()
event handler is triggered when:
refreshCart()
function is called.Important: Actions performed by Velo functions other than the refreshCart()
function do not trigger the onCartChange()
event handler.
function onCartChange(handler: function): void;
handler(): void
The name of the function or the function expression to run when the cart is changed.
import wixEcomFrontend from "wix-ecom-frontend";
import wixEcomBackend from "wix-ecom-backend";
$w.onReady(function () {
// handler function that gets the current cart on cart change
const handler = () => {
// The wixEcomBackend.currentCart module is universal.
// You can call its methods in frontend and backend code.
wixEcomBackend.currentCart
.getCurrentCart()
.then((cart) => {
let cartId = cart._id;
console.log("cart ID: ", cartId);
})
.catch((error) => {
console.error(error);
// Handle the error
});
};
wixEcomFrontend.onCartChange(handler);
});
Opens the Side Cart panel.
The openSideCart()
function opens the Side Cart panel on the current page.
Notes:
openSideCart()
will work on mobile.function openSideCart(): void;
import wixEcomFrontend from "wix-ecom-frontend";
$w("#myOpenSideCartButton").onClick(() => {
// on button click - open the side cart
wixEcomFrontend.openSideCart();
});