Apply Patch to Resolve Content-Type Mismatch

Analyzed the patch and found that we need to make changes to the .ssp file. We cannot use extend method for doing this, we can only use override method. Downloaded the source code and backup of the SSP Application “SuiteCommerce Advanced – Dev 2022.2.0”. Open image-20250526-124202.png Then we replaced these folders of source code with… Continue reading Apply Patch to Resolve Content-Type Mismatch

Resolving ‘Load More’ Issue on PLP Page When Using a Custom Favorites Extension

Resolving ‘Load More’ Issue on PLP Page When Using a Custom Favorites Extension We introduced a custom Favorites extension that allows users to mark items on the PLP as favorites. However, the ‘Load More’ button on the Product Listing Page (PLP) stopped functioning as expected. SCA uses the FacetsItemsCollectionView for Infinite Scroll behavior. It dynamically… Continue reading Resolving ‘Load More’ Issue on PLP Page When Using a Custom Favorites Extension

How to Hide a Specific Cart Line Item (e.g., Processing Fee) in SuiteCommerce Cart Page Using childViews Override

Description: This article explains how to hide a specific item (such as a “Processing Fee” non-inventory line) from the cart item list view in SuiteCommerce (SCA). This is useful when certain line items must remain in the cart for calculation purposes (e.g., totals, tax), but should not be displayed to the customer on the cart… Continue reading How to Hide a Specific Cart Line Item (e.g., Processing Fee) in SuiteCommerce Cart Page Using childViews Override

To create custom favorite item page in suitecommerce using custom record

To create a custom search in suitescript with a condition of inactive false and display on the website true. var methodNotAllowedError = { status: 405, code: ‘INVALID_ID’, message: ‘Sorry, you are not allowed to perform this action.’ }; var config = { record: ‘customrecord_favourites’, fields: { internalid: ‘internalid’, customers: ‘custrecord_fav_customer’, item: ‘custrecord_fav_item’ } }; try… Continue reading To create custom favorite item page in suitecommerce using custom record

Related and correlated items in SCA

In SuiteCommerce Advanced (SCA), related items and correlated items are two powerful tools for enhancing the shopping experience by suggesting additional products to customers. Here’s a detailed explanation of both concepts and how they can be implemented effectively: 1. Related Items Related items are manually associated with a product. These are typically complementary products that… Continue reading Related and correlated items in SCA

Best practices for displaying more than four items in single row on the PLP pages

In SCA websites, typically four items are displayed per row on PLP pages. To include more items as per the requirements from clients, we need to resize the item names, images, and the entire item cells. To reduce or restrict the display of lengthy item name we use the ellipsis feature in CSS. Below provided… Continue reading Best practices for displaying more than four items in single row on the PLP pages

How to set default country selection option on the checkout page

Go to Website Setup record. Under ‘Shopping’ tab there is a dropdown field named ‘Default Shipping Country for Checkout’ in the ‘Shipping Page’ section. Select the country that you want to set as default shipping country option during checkout process. If no country has chosen (left the dropdown as empty), then default selected shipping country… Continue reading How to set default country selection option on the checkout page

Bx slider in SuiteCommerce Advanced

In SuiteCommerce Advanced website, sliders are implemented by using jQuery bx slider. Configuration Options: BxSlider provides a wide range of options to customize the slider’s behavior. For example: mode: Defines the transition type (horizontal, vertical, or fade). auto: Enables automatic sliding. pause: Sets the duration between slides. controls: Adds navigation controls like next/previous buttons. pager:… Continue reading Bx slider in SuiteCommerce Advanced

Dynamically Separating “Our Brands” and “Partner Brands” in SuiteCommerce Header Menu Using Configuration Fields

This article outlines the implementation of a custom SuiteCommerce extension that dynamically classifies brand categories in the website header menu into “Our Brands” and “Partner Brands” based on a configuration-driven approach. This solution replaces hardcoded logic with a flexible method that can be managed via SC.CONFIGURATION. Dynamically separate brands into “Our Brands” and “Partner Brands”… Continue reading Dynamically Separating “Our Brands” and “Partner Brands” in SuiteCommerce Header Menu Using Configuration Fields

SuiteCommerce Product Reviews

Product Reviews for SuiteCommerce and SuiteCommerce Advanced 2024.2 and Later If you have implemented SuiteCommerce or SuiteCommerce Advanced 2024.2 or later, your customers can view and create product reviews on your Commerce website by default. However, you can turn this setting off in the SuiteCommerce Configuration if you do not want your customers to use… Continue reading SuiteCommerce Product Reviews