Skip to main content
All CollectionsWeb CheckoutFrequently Asked Questions
How can I limit the number of displayed products in the web checkout?
How can I limit the number of displayed products in the web checkout?
Updated over 2 weeks ago

Yes. In fact, it is recommended that you keep the number of products to a reasonable number as the volume and complexity of your products can significantly impact checkout performance. You may want to use specific attributes to filter which products appear in the checkout widget.

Alternative Product Filters

To achieve this, include the "products" object in the <script> tag and specify the filter using one of the following attributes:

CategoryId

Filter products by the category instead of using the dashboard settings.

  1. Go to Products > Categories and select the desired category.

  2. Copy the category ID.

    Category ID

  3. Paste the ID in "categoryId" attribute in the "products" object.

    { 
    "apiKey": "<YOUR_API_KEY_TOKEN>",
    "products": {
    "categoryId": "<CATEGORY_ID_1>",
    },
    }

This allows you to specify a category or switch between categories as needed.

ProductIds

Filter by specific products.

  1. Go to Products > Products and open the products you want to include in the checkout.

  2. Copy their product IDs.

    Product ID

  3. List these IDs in the "productIds" array in the "products" object.

    { 
    "apiKey": "<YOUR_API_KEY_TOKEN>",
    "products": {
    "productIds": [
    "<PRODUCT_ID_1>",
    "<PRODUCT_ID_2>"
    ]
    }
    }

DestinationId

Filter products by destination.

  1. Go to Products > Destinations and select the desired destination.

  2. Press the EDIT DETAILS button and copy the destination ID.

    Destination ID

  3. Add the ID to the "destinationId" attribute in the "products" object.

    { 
    "apiKey": "<YOUR_API_KEY_TOKEN>",
    "products": {
    "destinationId": "<DESTINATION_ID_1",
    },
    }

Featured

Include only products that are listed in a featured category.

πŸ“’ NOTE

Make sure the featured category is assigned to the web checkout.

Category with Featured Products

Add the "featured": true attribute in the "products" object.

{ 
"apiKey": "<YOUR_API_KEY_TOKEN>",
"products": {
"featured": "true",
}

This ensures that only products assigned to categories with the 'Featured' box checked will be listed.

πŸ“— TIP

You can use each filter individually or combine multiple filters to refine the product selection as needed.

❗️ IMPORTANT ❗️

If your filtering is not working as expected, make sure that the filter(s) is added to the "products" object, not the "productID" .

Did this answer your question?