Create the Slider in the template file Give CSS Animation for scrolling it in infinite loop
Author: Sangamesh
Showing the customer’s or contact’s name, created the wishlist in the UI in the website
This topic cover the topic for showing the customer’s or contact’s name and who created the wishlist in My account UI on the website Create a contact under the main customer and access it to login into the website As per the contact1. Login to NetSuite account (The login credentials are already shared previously)2. Go… Continue reading Showing the customer’s or contact’s name, created the wishlist in the UI in the website
How to resolve the issue when form is not submitting and shows an error message, because of insufficient permission
Resolving the issue when trying to upload and submit off of the form at the bottom of the site – an error message pops up that says: “Something Went Wrong”. when insufficient permission is provided. After getting the error “Something went wrong” after submitting the form,Add try-and-catch block to the code block, add error console… Continue reading How to resolve the issue when form is not submitting and shows an error message, because of insufficient permission
How to resolve the error “tsc is not recognized as an internal or external command” while npm install
In some cases, while installing NPM, it’s sometimes shows the error “tsc is not recognized as an internal or external command.” to resolve this issue Type,“npm install -g typescript“and after that, try to run npm install.
Inactivate or disable the Guest checkout in the website using website setup
Go to Commerce > Websites > Web Site List. On your Web Site Setup record, click Edit. On the Shopping subtab, in the Registration Page section, set the Customer Registration field as “required”. Click Save.Note: Select required if you want all shoppers to register on your site. With this option, a record is created in… Continue reading Inactivate or disable the Guest checkout in the website using website setup
KIT/Package item feasibility with SuiteCommerce website
KIT/Package item feasibility with Suite Commerce website Introduction Kit Item Kits or packages let you create items that are collected from other items. You can assign multiple price levels to your kits and even make them available in your website. Whenever you sell a kit, inventory items are deducted from the inventory. Kit/Package Items A… Continue reading KIT/Package item feasibility with SuiteCommerce website
Changing or translating the text content of the landing page using SMT
Editing Landing Page Translations In Site Management Tools (SMT), you can edit a translation to update the existing landing page when changes are necessary. To edit landing page translations: Log in to SMT. Click Overview Mode. Select the Pages tab. Click the ellipsis beside the landing page for which you want to edit a translation. Click Edit. From the… Continue reading Changing or translating the text content of the landing page using SMT
How to configure a new language to website using NetSuite for translation
In this topic we will cover or know How to configure a new language to website using NetSuite for translation Enabling Multiple Languages The first task is to enable foreign languages in your account. This setting affects all solutions in NetSuite, including sales orders and email. If this setting is not enabled, you cannot proceed… Continue reading How to configure a new language to website using NetSuite for translation
Resolving the issue of slider, When returned to home after navigating to some PDP pages, the speed of the slider’s rotation is increasing.
When clicked on the any product/item form the slider or returned to Home page after navigating to some PDP Pages, the speed of the slider’s rotation in increasing, It cause because for setInterval( ); function to prevent this issue, Clear the Interval function whenever it returned to home page, and start the the interval again… Continue reading Resolving the issue of slider, When returned to home after navigating to some PDP pages, the speed of the slider’s rotation is increasing.
How to prevent “an internal error occurred” when backend data is null
This article covers the solution for, when there is no data coming form backend of the data is null then the it will throw the error “an internal error occurred”, to prevent this issue while fetching data from backend is, In fail function, add “result.preventDefault =true;” or make preventDefault as true to prevent this issue.