Extension to Show Category in website based on the Role and Domain

Overview: An extension named ‘ShowCategoryByRole’ for NetSuite Commerce is designed to dynamically hide or display categories in the site header, navigation facets, and category pages based on customer roles and domain classifications. This multi‑domain solution leverages custom category fields for customer segment and domain assignment, ensuring that only relevant categories appear to each user segment.… Continue reading Extension to Show Category in website based on the Role and Domain

Personalized Catalog Views in SMT Preview Is Not the Same as Logged User

When logging in to the website as Contact (Type is Company), some Commerce Categories do not reflect as defined in Personalized Catalog Views (Customer Segment). But when viewing the PCV via Site Management Tools and selecting the Customer Segment, it shows the right view of the Commerce Categories. Solution 1. Customer must be on a… Continue reading Personalized Catalog Views in SMT Preview Is Not the Same as Logged User

List Sum of Items Under a Commerce Category in SuiteCommerce Advanced

A user may want to know the number of items which have been assigned to each commerce category but there is currently no standard way to do this when using SuiteCommerce Advanced. This is an alternative solution to pull up and sum up the number of items which have been assigned to a commerce category.  Solution… Continue reading List Sum of Items Under a Commerce Category in SuiteCommerce Advanced

Resolve Breadcrumbs Not Showing Commerce Categories on the Product Display Page

To display the primary Commerce Category in the Breadcrumb Navigation on the Product Display page. Set the Category you wish to display in the Breadcrumbs as Primary. For more information see article 51639 Assign Items to a Commerce Category Ensure Commerce Categories is added to the Details Field Set. For more information see article 51653 Add Commerce Categories to Website Field… Continue reading Resolve Breadcrumbs Not Showing Commerce Categories on the Product Display Page

Virtual Reality Revolutionizing Online Shopping

Virtual reality (VR) technology has been making waves across various industries, and e-commerce is no exception. As online shopping continues to thrive, businesses are constantly seeking innovative ways to enhance the digital shopping experience for consumers. In this article, we delve into the integration of virtual reality into e-commerce platforms and its potential to revolutionize… Continue reading Virtual Reality Revolutionizing Online Shopping

The category is based on free shipping in the cart page on the SCA Elbrus website.

The item displays a ‘Free Shipping’ tag when it belongs to the commerce category of salon products. So, I have identified the commerce category for each item, verified that the category is ‘salon products,’ and cross-checked the internal ID of the category. The code is added below  var item = this.model.get(‘item’);        … Continue reading The category is based on free shipping in the cart page on the SCA Elbrus website.

Commerce category import – Issue

Existing Categories replaced by other categories after importing new categories Commerce categories are used to create a hierarchical structure of items in your web store. The fields supported for commerce category CSV import reflect those on the Commerce Category Record at Commerce > Content Management > Catalog & Categories > Commerce Categories. After the import, the… Continue reading Commerce category import – Issue

Get the thumbnail of parent categories of an item in PDP

Get the parent category details using the method getItemInfo() in the entry point file. var item = pdp.getItemInfo(); Fetch the category model in the view file.Pass the url of the parent category to the Category Model and get the thumbnail. this.ParentCategories= item.commercecategory.categories; _.each(this.ParentCategories, function(pc){ pc.url=pc.urls[0]; var categoriesFetch = new CategoriesModel().fetch({ data: { fullurl: pc.urls[0] }… Continue reading Get the thumbnail of parent categories of an item in PDP