How to resolve the cancel button functionality is not working in purchase history page.

After the NetSuite update for the Suite Commerce and Suite Commerce standard websites getting effected, In the standard purchase history page the cancel order is not working as required, using below patch we can resolve the issue. To resolve these issue update these functions in an extension or SSP as required JavaScript: OrderHistory.Cancel.View confirm: function… Continue reading How to resolve the cancel button functionality is not working in purchase history page.

How to implement Liquifire Viewersuite Zoom in SCA website

The Liquifire Viewersuite is used to enlarge the image viewing like zooming, we can use this feature to enlarge more than the default zoom option in SCA. Add the viewer suite script to head of document <script src=”http://iloveblvd.liquifire.com/zap/dhtml/com.liquidpixels.Zoom.jsr” type=”text/javascript”></script> create a div or container element with unique id <div class=”zoom-container”>   <div id=”personalizedImg”> </div>  … Continue reading How to implement Liquifire Viewersuite Zoom in SCA website

How to implement Liquifire Resolve in SCA website

The Liquifire Resolve is used to resize the non-liquid pixel images according to the device the user viewing, In SCA we have default image resizing and we can also use this for the specific image if required by using below solution. add the liquefier resolve script to head of document <script src=”https://lpi.liquifire.com/zap/dhtml/com.liquidpixels.Resolve.jsr”></script> create a image… Continue reading How to implement Liquifire Resolve in SCA website

Proposal for Inventory Management from Webstore

Proposal contains the solution for managing stock of inventory items from webstore that including inventory adjustment, inventory view, and update. Requirement A custom record needs to be created with item, quantity on hand, last shipment date, and last customer date fields. Real-time inventory stock and stock updated dates need to be shown on the product… Continue reading Proposal for Inventory Management from Webstore

How to prevent customers from proceeding to checkout when the customer reorders item and not reviewed the item

We can prevent customers from proceeding to checkout if they have reorder items from my account and they have not review the reordered item options and we can enable the button once they have reviewed using below solution. create two new item options to store reordered and reviewed value reordered custcol_ag_isreordered reviewed custcol_ag_is_reviewed Myaccount Entrypoint… Continue reading How to prevent customers from proceeding to checkout when the customer reorders item and not reviewed the item

How to use sweetAlert without adding the sweetAlert file to extension

Sweet Alert is used for the showing alters in model, we can use the jQuery CDN to show the alert messages instead of pasting the whole file in the extension by using this solution. use the CDN link in $.getScript(url) method on initialize of the view. $.getScript(“https://cdnjs.cloudflare.com/ajax/libs/sweetalert/2.1.2/sweetalert.min.js”); We are not required to add file we… Continue reading How to use sweetAlert without adding the sweetAlert file to extension

How to add custom images in the Product image slider on the PDP and Quick View

We can use this solution to add a personalized images or custom images to the “ProductDetails.ImageGallery.View” on PDP and Quick view, to show on the slider on option selection _.extend(ProductDetailsImageGalleryView.prototype, {                     initialize: _.wrap(ProductDetailsImageGalleryView.prototype.initialize, function wrapInitialice(fn) {                  … Continue reading How to add custom images in the Product image slider on the PDP and Quick View

Creating local workspace for Vinson version of SCA website

To create a local workspace on the Vinson version backup code, we can follow these steps. Download the latest backup files from the respective NetSuite’s Hosting SSP folder and extract it to local disk. Once the files are extracted, use node version 10.24.1 or above 10 version to install the required packages by running npm… Continue reading Creating local workspace for Vinson version of SCA website

How to add SSL certificate manually for a domain record

We can use these steps to add a SSL certificate manually for the domain record on NetSuite Go to the domain record on the NetSuite, click on Manual Certificate. Click on the Generate CSR File to generate a CSR file that required to submit before the generation of SSL certificates. once the CSR file is… Continue reading How to add SSL certificate manually for a domain record

Convert liquid Pixel image to PDF from the URL and send to email when a customer placed an order

Once a customer placed an order with the Liquid Pixel customization item and we required to send the liquid pixel image with the PDF format we can use this solution to send email to any static or dynamic email using workflow Action Script Script: /** * @NApiVersion 2.x * @NScriptType workflowactionscript */ /************************************************************************************************************************* **************************************************************************************************************************/ define([… Continue reading Convert liquid Pixel image to PDF from the URL and send to email when a customer placed an order