A matrix table for the matrix child items has been created, showing the sku value of each matrix item, the options present in the item, like the size of the item, the quantity that the customer can set according to their preferences, and the price of each child item. It also displays checkboxes that can… Continue reading How we can create a Matrix child items on pdp page
Author: Priyadarshini Elumalai Kannan
How to add the field for the registration page through the configuration record
We can change the requested field through the configuration record, for the input type, text, checkbox, and number. Configuration JSON: Entry point View file Template
How to add extra field in the register page on SCA
Here we are adding the Province, Phone number Current Suppliers field on the Register page in SCA For this we need to create the custom field in NetSuite by Go to Customization > Lists, Records, & Fields > Entity Fields. On the Custom Entity Fields page, each custom field is listed, with columns providing detailed information… Continue reading How to add extra field in the register page on SCA
Proposal For Attributes, Drinkability option on Nickolls and Perks website
Proposal Summary This proposal covers the development for Attributes, Drinkability option. in the SCA webstore for NICKOLLS & PERKS website. Requirement We had Attributes, Drinkability Options N&P have requested a new option for the item, called ‘Drinkability’. A new custom list for ‘Drinkability’ will be added to the item record consisting of the following options: Drink Now … Continue reading Proposal For Attributes, Drinkability option on Nickolls and Perks website
How to resolve the 404 error in indexing for the blog page due to extension
The http status of the blog page generates a 404 error when the banner and script extension is activated to the website. The issue due to the Banner extension is resolved by updating where we are using the let so replace the let to var and replace the mountToApp: function mountToApp (container) to mountToApp: function()… Continue reading How to resolve the 404 error in indexing for the blog page due to extension
How to add the text in register page which will be updated from configuration record
In JSON In entry point View file In corresponding template file <div class=”login-text-container” data-view=”LoginRegisterText”></div>
How we can solve the blink issue of update button
The issue is caused by Enables or disables the Update or Add to Cart button based on the value of certain item options. On the extension, the enabling and disabling are done separately for different conditions. So the multiple enabling and displaying may be the issue with blinking. Optimize the code and try to use… Continue reading How we can solve the blink issue of update button
How to show edit Profile information as a popup
Edit Profile information as a pop up from SCA webstore . By default, editing the profile information is not available as a popup. Javascript
How to solve SOURCE CODE ERROR while deploying in Elbrus version of SCA
We have to change the variable type to solve the source code errorFrom let to var by this we can resolve the issue
How to resolve Error: getaddrinfo ENOTFOUND 1312745-sb4.restlets.api.netsuite.com while deploy theme
Solution In the Theme or Extensions Development Tools directory, open this file: …/ns_npm_repository/oauth1/index.js Find the following line of code: return this._baseStep(`${this.vm ? ” : account}${this.urls.step3}`, params); Replace it with the following line of code: return this._baseStep(`${this.vm ? ” : account.replace(‘_’,’-‘)}${this.urls.step3}`, params); In the Theme or Extensions Development Tools directory, open this file: …/gulp/ns-deploy/net.js Find the… Continue reading How to resolve Error: getaddrinfo ENOTFOUND 1312745-sb4.restlets.api.netsuite.com while deploy theme