My Stuff
Please note that on Friday, September 19, 2025, at 8:00 PM Pacific time, our Case Management System will undergo a scheduled maintenance for approximately 4 hours. During this time, case creation via SuiteAnswers will be unavailable and inbound calls will be routed to Customer Service.
Comments
-
Hi David, I had the same requirement of accessing categories and facets from Item Level. I have accessed them through ItemDetails Model(Pre-Elbrus) or ProductDetails Model(Elbrus) in the Front end code. I am not sure how to access them within the Netsuite UI(without scripting). If you come across, please do share. Thanks,…
-
Considering any business with Netsuite ERP in a long term scenario, SCA is the best option. Upgrading versions might be a little problem, but worth trying. Balaji
-
Edit the file in the below folder: node_modules\xmlbuilder\lib\XMLStringifier.js Remove the offending ‘u’ at the end of the RegEx (around line 140): res = str.match(/[\u0000\ud800-\udfff\ufffe-\uffff]/u); … res = str.match(/[\u0000\ud800-\udfff\ufffe-\uffff]/); Temp fix. If you need to know why and how? Please see attached…
-
Hi When a netsuite form is displayed in a webpage, inspect the fields in the form and you can find every field has an ID and a class. Referring this Id or class, styling can be done and this styling has to be in the template file attached to the Netsuite form.
-
Hi Sam, The default source code folder doesn't contain .nsdeploy file. This is because the source code can't identify your account information until you deploy the code at-least once. After deploying the source code for the first time, you can find the .nsdeploy file in the source code folder. This file contains the…
-
Hi jalarson1, Just a quick update, We had a customer website which has different image sizes. Netsuite recommends to upload images of uniform sizes(for items: 1200x1200) and the code supports the same. In our case, we have to manually adjust the height of the item images in four different files and make it responsive for…
-
Hi Sam, I have documented few commands that I have worked so far, not sure if this helps.. Gulp Commands:- gulp npm install --global gulp > install gulp globally if the global gulp throws error, run “gulp npm install” gulp –v > check the current gulp version gulp local > run the local server gulp deploy > deploy entire…
-
Hi Carlyn, Not sure if my little experience can help you, I am currently working on migrating site builder website to SCA Vinson version. SCA has latest features that every ecommerce website require, to compete in the current market. And it's constantly updating with every release. Some of the key features I felt worthy…
-
Hi AmPsy, I can help with displaying Recently viewed items on homepage as I haven't worked on Related Items and I doubt why related items on homepage? I followed the same way you explained above and it worked. In Home.View.js, add Backbone.CompositeView and RecentlyViewedItems as dependencies. , initialize: function…
-
Hi Jono101, We have implemented Zopim live chat for one of our clients. I think you can add the code by yourself, if you follow the below steps. Create a new module (Zopim@sca) and create a js file within the JavaScript folder like Zopim.js Update the distro file, once in the path and three times in the js path in all…
-
Interesting to know that it can be controlled in the Netsuite UI. Did you try adding a parameter "priority" (highlighted below) in the SC.Shopping.Configuration.js, same as Facets ?? { cartOptionId: 'custcol2' , label: 'Color' , url: 'color' , colors: colors , priority: 1 , showSelectorInList: true , templates: { selector:…
-
Did you configure Fieldset fields and Facet(at-least one - online price)?
-
Hi Len, 1) "Show ALL products" - No - As you can't limit the number of products. 2)Implement Lazy load of pages - Yes, but not easy(can pass the data but displaying in a template adds more work.) 3) I assume this might help, In Item Search Results page, remove pagination and add a button at the bottom of the page, "Load…
-
Hi Yabo, I am about to work on the same feature for one of our current client's. I don't think we need a netsuite bundle to work on it. I have shared my ideas, Add all the required item fields to the search fieldset as we need them to show when compared. Show only the fields that you need to show on the Facet Item Cell.…
-
Hi Ben, I have worked on the limited access for certain/all customers to view certain/all pages on one of our client's SCA website. Now if you need to display certain pages to a set of customers, first add a custom field (type:checkbox) in the Netsuite customer record. In the source code, you can find Profile.Model taken…
-
Hi Chris, Regarding the new Configuration bundle issue, you need to deploy the code at-least once to make the configuration bundle work in Netsuite as the manifest file is not available until the code is deployed for the first time. To achieve this, Add a test domain in SCA website setup Finish all the basic configuration…
-
Hi lenmerkel, In the Facets.ItemCell.View.js file, get context function, you can assign a variable to the model.collection.length and if its equal to 1, get the model.url and assign it to window.location.pathname. You can even add a delay function before redirecting to PDP to make it look better. Hope this helps, Bal
-
Hi Mike, Named anchors don't work in any SCA Single Page Application because, the href value is assigned to the url when this anchor tag is clicked. As this URL has not being specified in the Router of that application module, it displays "Page not found". But here is a way to fix this using html5 data attributes. In…
-
Hi Mark, I have been using Git with Bit-bucket. For the first time use, you can follow the below commands, Basic steps for Bit-bucket: Create a Bit-bucket account and create a repository in your account. install git on local PC. Open/search "Node.js command prompt". cd /path/name/of/project #choose the project folder git…