How can I merge 2 records in SuiteScript 1.0

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

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

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