Go to Commerce > Websites >Web Site List. Click Edit next to the website for which you want to display strike-through pricing. Go to the Field Sets tab. Add the Base Price and the Base Price (Formatted) field to the Details field set: Locate the Fields Included in Field Set column of the Details field set and click the Set icon to open the… Continue reading How to set Default Sorting of Price Levels in netsuite
Author: Ramya H
How to Verify Strike-Through Pricing is Enabled and Default Price Level is Set
To verify Strike-Through Pricing is enabled: In NetSuite, go to Commerce > Websites > Configuration. Select your website and domain and click Configure. Go to the Shopping Catalog tab. Confirm the Enable Strike-Through Behavior box is checked. Check this box if it is not checked. Click Save. To verify the default price level is set: In NetSuite, go to Commerce >… Continue reading How to Verify Strike-Through Pricing is Enabled and Default Price Level is Set
Steps to create Strike-Through Pricing
Strike-Through Pricing The Strike-Through Pricing feature compares a customer’s configured price level with the default price level. After the Strike-Through Pricing feature is enabled for your web store, your customer’s discounted price is displayed on the Product Listing Page (PLP) and Product Details Page (PDP) for all items, including matrix child items. The original default… Continue reading Steps to create Strike-Through Pricing
SS 2.0 > Client Script > search.lookupField > How to Retrieve a Joined Column
User wants to use search.lookupField to lookup joined fields on a record. Solution Make sure the field to be searched is a joined field Please refer to the The SuiteScript Records Browser – ID 74610 *The reference would be found under Search Joins table Edit the Sample Code Below var fieldLookUp = search.lookupFields({ type: search.Type.SALES_ORDER, //The intended record type id: ‘1865’,… Continue reading SS 2.0 > Client Script > search.lookupField > How to Retrieve a Joined Column
Configuring Search Fields and Field Sets
SuiteCommerce InStore (SCIS) uses search fields and field sets to retrieve and display item information. The NS_RP_ResetSearchFields.js script is run automatically during the first installation of SCIS. However, if you create a second SCIS website, or if you make significant changes to your SCIS configuration, you may need to use the following steps to configure… Continue reading Configuring Search Fields and Field Sets
How to resolve TypeError: sass.sync is not a function when running gulp local in Git
You need to change the sass compiler to use dart–sass instead of the default node–sass like this: const sass = require(‘gulp-sass’); sass.compiler = require(‘sass’); Or for version 5 of gulp–sass: const sass = require(‘gulp-sass’)(require(‘sass’));
How to update the logo style list for both liquid and non-liquid pixel items
To load a customer record created a suitelet /** * @NApiVersion 2.x * @NScriptType Suitelet */ define([‘N/record’, ‘N/log’, ‘N/search’], function(record, log, search) { function onRequest(context) { var customerId = context.request.body; log.debug(‘Customer ID’, customerId); try { … Continue reading How to update the logo style list for both liquid and non-liquid pixel items
How to hide the eye from a password input in MS Edge
To hide the default hide/show password input field in the MS edge we need to disappears by using css property . The ::ms-clear is working and removes the little x where the user can clear the input. But the ::ms-reveal isn’t working. input[type=”password”]::-ms-reveal, input[type=”password”]::-ms-clear { display: none; } and input::-ms-reveal, input::-ms-clear { display: none; }
How to change the shipping cost in the order summary section and store that value in the custom field of the sales order
We can set the value and store in the transaction body field in the sales order by using suitescript . try { var canadaShipCost = Configuration.get(“shipcost.canada”); var unitedStates = Configuration.get(“shipcost.unitedstates”); … Continue reading How to change the shipping cost in the order summary section and store that value in the custom field of the sales order
How to resolve Error: Cannot find module ‘gulp-sass’
First check the nvm version. This issue will usually comes for old version so for that we need to update the nvm version. Just do npm update and then npm install gulp-sass –save-dev in your root folder, and then when you run you shouldn’t have any issues. Edit your package.json. Change: “gulp-sass”: “^2.3.2” to “gulp-sass”:… Continue reading How to resolve Error: Cannot find module ‘gulp-sass’