How to hide the login page for public use and visible for developers and client

To hide a login page for public use, we need to do that by a code and we can add a css property to hide that login section. and by passing the custom text to we can show that login field for developers . _.extend(LoginRegisterLoginView.prototype, {                 //this… Continue reading How to hide the login page for public use and visible for developers and client

how to add javascript/Sdk paypal integration on site builder domain

To add a PayPal integration on website for that we need to add the PayPal account in the NetSuite the steps are there in the NetSuite help sender please refer those after adding PayPal successfully we need to add the PayPal sdk code to the website in the PayPal website https://developer.paypal.com/sdk/js/ we will get the… Continue reading how to add javascript/Sdk paypal integration on site builder domain

How to pass the value from website to sales order custom field when the SCA version is below Suite Commerce 2021.1

For version suite commerce 2021.1 there is a standard method we can fallow that method. For both method we need to add the custom field id in the configuration record. Standard method for version 2021.1 var cart = container.getComponent(‘Cart’); var data = { fieldId: “custbody_customerref”, type: “string”, value: “C123456” } cart.setTransactionBodyField(data).then(function() { console.log(data.fieldId + ‘… Continue reading How to pass the value from website to sales order custom field when the SCA version is below Suite Commerce 2021.1

how to change the load text to a fevorite page in my account

We can custom text for loading error messages that will be there for few seconds by extending the view and template in the template we can pass the variable and with the condition if that variable is there then it will display custom text or it will display default text. Java script: _.extend(ProductLineStockView.prototype, {  … Continue reading how to change the load text to a fevorite page in my account