Java Script Functions

How to declare a function? function  functionName(){ //body of the function }  How to invoke a  function? functionName(); Function Expression let variable1 = function(){ //body of the function }; variable1(); //calling the function Hoisting works with function declarations but does  not work with function expressions. Eg: // function Declaration functionName(); function  functionName(){ console.log(‘Hello World’); }… Continue reading Java Script Functions

How To Transfer a wordpress website to google cloud from a local server ?

There are multiple method avilable , 1.  Manual wordpress migration methos from a localhost 2. WordPress migration using Plugin  The manual migration is better, though the process is little complicated than plugins but you will have exact copy of yours WordPress. Plugins normally skip unnecessary file such as cache files, but if the plugins not… Continue reading How To Transfer a wordpress website to google cloud from a local server ?

Published
Categorized as Wordpress

Pass a Value from the Before Submit to the After Submit Script

Requirement: A developer wishes to use a transient variable between the Before Submit and After Submit entry points of a User Event script. Solution: One of the ways to have this done is to define a session object on the Before Submit script using the ‘runtime.Session’ method found in the runtime record. The After Submit… Continue reading Pass a Value from the Before Submit to the After Submit Script

Imports options

ADD – Select if all imported records are new to NetSuite. UPDATE – Select if all imported records already exist in NetSuite, and the import is intended to modify these records. ADD OR UPDATE – Select if imported records are a mixture of new and existing records. Under Advanced Options: If Validate Mandatory Custom Fields checkbox is checked,… Continue reading Imports options

Templates in Site builder

We can add the templates for Category page, PLP, PDP,Home page ,Information item and related cell in the netsuite. For that navigate to Setup>Site builder>item/category templates>edit the template we want.For applying this template to netsuite we have certain method. One of the method is,1.Setup>site builder>setup website2.In the appearance subtab you can add the template for… Continue reading Templates in Site builder