How can I merge 2 records in SuiteScript 1.0 I want to merge 2 customer records. The reason being we have many customers in our NetSuite backend that have not registered in our website. When they register NetSuite automatically creates a new customer instead of consolidating the existing customer. So I want to merge those… Continue reading How can I merge 2 records in SuiteScript 1.0
Author: Prashanth G S
how to create a popup form for a website using java srcipt
we can add the pop form for those who dint login if they what to buy the product they can create account directly with the popup form or any sceniory we can create a pop using javascriptfor this we are going to html, Css and javascript html <button class=”open-button” onclick=”openForm()”>Open Form</button> <div class=”form-popup” id=”myForm”> <form action=”/action_page.php” class=”form-container”> <h1>Login</h1> <label for=”email”><b>Email</b></label> <input type=”text” placeholder=”Enter Email” name=”email” required> <label for=”psw”><b>Password</b></label> <input type=”password” placeholder=”Enter Password” name=”psw” required> <button type=”submit” class=”btn”>Login</button> <button type=”button” class=”btn… Continue reading how to create a popup form for a website using java srcipt
how to make a image grid responsive in website and how to add the light box image to the website
how to make a image grid responsive in website and how to add the light box image to the website for this we need to add the html code and css code 1.image grid responsive:html<div class=”row”> <div class=”column”> <img src=”wedding.jpg”> <img src=”rocks.jpg”> <img src=”falls2.jpg”> <img src=”paris.jpg”> <img src=”nature.jpg”> <img src=”mist.jpg”> <img src=”paris.jpg”> </div> <div class=”column”> <img src=”underwater.jpg”> <img src=”ocean.jpg”> <img src=”wedding.jpg”> <img src=”mountainskies.jpg”> <img src=”rocks.jpg”> <img src=”underwater.jpg”> </div> <div class=”column”> <img src=”wedding.jpg”> <img src=”rocks.jpg”> <img src=”falls2.jpg”> <img src=”paris.jpg”> <img src=”nature.jpg”> <img src=”mist.jpg”> <img src=”paris.jpg”> </div> <div class=”column”> <img src=”underwater.jpg”> <img src=”ocean.jpg”> <img src=”wedding.jpg”> <img src=”mountainskies.jpg”> <img src=”rocks.jpg”> <img src=”underwater.jpg”> </div></div>css: .row { display: flex; flex-wrap: wrap; padding: 0 4px;}.column { flex: 50%; padding: 0 4px;} .column img { margin-top: 8px; vertical-align: middle;}2. light box image: <div class=”row”> <div class=”column”> <img src=”img1.jpg” onclick=”openModal();currentSlide(1)” class=”hover-shadow”> </div> <div class=”column”> <img src=”img2.jpg” onclick=”openModal();currentSlide(2)” class=”hover-shadow”> </div> <div class=”column”> <img src=”img3.jpg” onclick=”openModal();currentSlide(3)” class=”hover-shadow”> </div> <div class=”column”> <img src=”img4.jpg” onclick=”openModal();currentSlide(4)” class=”hover-shadow”> </div></div> <!– The Modal/Lightbox –><div id=”myModal” class=”modal”> <span class=”close… Continue reading how to make a image grid responsive in website and how to add the light box image to the website
how to add the saparate styling for i phone issue
this code is to resolve the in i pad and ios devices to solve the border color : -webkit-tap-highlight-color: transparent;outline: none;-ms-touch-action: manipulation;touch-action: manipulation; this code is used to add the style in the fire fox: with the help of this code we can add the code to this using the css @-moz-document url-prefix() this code… Continue reading how to add the saparate styling for i phone issue
how to set the text overlapping issue in the plp page,hovering on the text stop the movement of it ,solve the issue in zooming aspect
how to set the text overlapping issue in the plp page,hovering on the text stop the movement of it ,solve the issue in zooming aspect for solve this type of issue we can do a proper design and when ever we are going to use width then we need to do with the percentage this… Continue reading how to set the text overlapping issue in the plp page,hovering on the text stop the movement of it ,solve the issue in zooming aspect
email address experienced bounce
email address experienced bounce to solve this issue we need to login to netsuite and make changes we need to go this navigation and select the account and we need to remove then it will go that error
authentication error while making payment
authentication error while making payment for solve this error first we need to check the netsuite to the enable feature need to be enable first we need to go to enable feature and thentransaction>check the payment link checkbox and then we need to add the domain and the card acception there then the authentication error… Continue reading authentication error while making payment
how to fix the content hiding the image in pdp page
how to fix the content hiding the image in pdp page with the theme we can do that first we need to fetch the theme and find the the class and we need to add the id for that and need to give the padding according to the requirement and we need check in the… Continue reading how to fix the content hiding the image in pdp page
how to get a saved search result from suitescript2
to get the saved search to a website we need to perform on the extension using the suitrscript2.0 for this we need to add the code followingly first we need to fetch and find the view and add that view to a extension and we need to add the according to requirement list >search >saved… Continue reading how to get a saved search result from suitescript2
how to change one page to another pages with the same url with the help of a parameter
we can change one page to another page with the same url with the help of parameter for that first we need to add the parameter value and we need to change the condition to it for this we need to add the code in extension and template also first we need to add the… Continue reading how to change one page to another pages with the same url with the help of a parameter