We can do this by the work flow First, we need to go to the NetSuite workflow and there we need to select traction and we can seletc RA and we can select send mail. in my case already email sending for ra creation so i need to add new action that I have added,… Continue reading Send email with RA details when Ra is created from website.
Author: Prashanth G S
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 price format to email template using suitelet file
we can change the price format for the amount with the function we need to call the function when we need that format JavaScript function: function formatCurrency(priceStr) { try { var price = parseFloat(priceStr); … Continue reading how to add price format to email template using suitelet file
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 modify the search on website
To modify the search with out effecting the category search we can extend the the facet browser view and add code to child view . _.extend(FacetsBrowseView.prototype, { childViews: _.extend(FacetsBrowseView.prototype.childViews, { ‘Facets.Items’: function() { … Continue reading how to modify the search on website
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 display contact details on a sales order
To display on the contact details We need to get the login details from the code and we can pass that value to the live order or we can check that with the custom field. create a custom field in the sales order and add that to a configuration record. Then set that variable to… Continue reading how to display contact details on a sales order
To get a contact details with the help of saved search
To get a contact details with the help of saved search we can use the email in the contact search If we want to search the contact by website login we can get the email and we will add that to search result there we will get the contact details if its present.
tiktok pixel integration
For integrating a TikTok we need to add the script to the head tag on the website and later we can create various tags to perform specific operations and we can integrate it to the GA dashboard Script: // added Tiktok script for head tag … Continue reading tiktok pixel integration
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