Go to Commerce > Websites > Configuration. Select your website and domain, and click Configure. Go to the Checkout tab and the Quantity Stock Message subtab. Check the Show Quantity Available on the Out-of-Stock Error Message box to include the quantity of items that are available in the out-of-stock error message. Clear this box if you do not want to include the… Continue reading How to display quantity of items availbale in stock
Category: Coding Standard
How to setup checkout prefrences
You can determine preferences for sales orders and how to bill for web orders. To set checkout preferences: Go to Commerce > Websites > Web Site List. Click Edit next to a web site you want to edit. On the Shopping tab (Checkout Preferences section) set preferences according to the following table. Click Save. Preference Description Sales Order Type Select whether… Continue reading How to setup checkout prefrences
How to get the current step of checkout page on website
The Checkout component lets you manage the steps in the checkout flow. For example, you can get the current checkout step, go to the next or previous steps, and add or remove steps in the checkout flow. Get an instance of this component by calling container.getComponent(“Checkout”). Returns a Deferred object. If the promise is resolved, it… Continue reading How to get the current step of checkout page on website
How to add a new module on checkout page
Adds a module to a step. You must extend class WizardModule to add a new module. checkout.addModuleToStep( { step_url: ‘shipping/new_step’ , module: { id: ‘new_module’ , index: 0 , classname: ‘OrderWizard.Module.Shipmethod’ , options: { container: ‘#wizard-step-content-right’} } })
Leveraging SuiteCommerce Advanced for Seamless Multi-Store Management
SuiteCommerce Advanced (SCA) offers a powerful solution for businesses looking to manage multiple online stores from a single platform. Whether you operate stores for different regions, product categories, or customer segments, SCA provides centralized control, streamlining operations across all channels. One of the key benefits of SCA is its ability to manage various stores with… Continue reading Leveraging SuiteCommerce Advanced for Seamless Multi-Store Management
Changing Site Management Tools to Use a Different Hosting Root
When you create a website, the Website Setup record specifies the HTML Hosting Root. When you implement Site Management Tools on that site, it utilizes the same HTML Hosting Root as the website. If you move the site to a different HTML hosting root, you will also need to create a new CMS SSP application.… Continue reading Changing Site Management Tools to Use a Different Hosting Root
Cannot Test an Extension on a Local Server
In some 2018.2 implementations of SuiteCommerce Advanced, developers might experience the following console error when testing an extension on a local server: TypeError: SC.addExtensionModule is not a function. The patch instructions described below correct this error. To implement this patch, you must create two custom modules to override different instances of index-local.ssp. These files are located… Continue reading Cannot Test an Extension on a Local Server
SuiteCommerce Advanced and Social Media Integration
In today’s digital age, integrating social media with e-commerce platforms like SuiteCommerce Advanced is essential for businesses aiming to enhance their online presence and drive sales. SuiteCommerce Advanced offers robust tools to seamlessly connect your e-commerce site with popular social media platforms such as Facebook, Instagram, Twitter, and Pinterest. By leveraging social media integration, businesses… Continue reading SuiteCommerce Advanced and Social Media Integration
Improving Operational Efficiency in E-Commerce with SuiteCommerce Advanced
In today’s competitive e-commerce landscape, operational efficiency is key to success. SuiteCommerce Advanced (SCA), NetSuite’s fully integrated e-commerce solution, helps businesses streamline operations, reduce manual tasks, and enhance the customer experience—all from a unified platform. One of the primary benefits of SCA is its integration with NetSuite ERP, providing businesses with real-time data across inventory,… Continue reading Improving Operational Efficiency in E-Commerce with SuiteCommerce Advanced
Circular Dependency Error While Deploying SCA
A circular dependency error occurs when two or more modules depend on each other either directly or indirectly. This can lead to runtime errors or unexpected behavior in your application. Here’s how to identify and resolve such issues effectively. Common Cause A circular dependency typically arises when: File A has a dependency on File B.… Continue reading Circular Dependency Error While Deploying SCA