Resolve error : You need a higher level of the ‘Lists -> Documents and Files’ permission to load the file using suitecript

Requirement: Show the pdf file attached in the customer record to the website We are getting only the id of the file from javaScript. To get the url, we have to load the file using suiteScript. When we use suitescript to load file, there may be a chance of permission issue to access the document.… Continue reading Resolve error : You need a higher level of the ‘Lists -> Documents and Files’ permission to load the file using suitecript

W3C Validation

W3C stands for World Wide Web Consortium. Its primary function is to assist site owners in identifying whether their XHTML or HTML documents are properly formatted with a markup language. W3C validation informs you of your various web page technical quality. W3C validation coding specifications ensure that your web page’s code script adheres to international… Continue reading W3C Validation

How to remove increment/decrement buttons on number inputs

we can use the css property for removing the increment/decrement buttons as shown below code input.quick-add-box-right-quantity-value[type=”number”], input.cart-item-summary-quantity-value[type=”number”]{    -webkit-appearance: none;    -moz-appearance: textfield;    appearance: textfield; }

Shopping page Not Scrolling in mobile device

Shopping Page Not Scrolling in Mobile device to overcome this issue we need to extend the shopping page view and add the below code define(‘ProductList.DetailsLater.View.Extension’ , [ ‘ProductList.DetailsLater.View’ , ‘underscore’ , ‘jQuery’ ] , function ( ProductListDetailsLaterView , _ , jQuery ) { ‘use strict’; _.extend(ProductListDetailsLaterView.prototype, { deleteListItemHandler: function (target) { var self = this ,… Continue reading Shopping page Not Scrolling in mobile device

Rename Image Files with the Item Identifier

The components of the image file name associate the file with an item record and determine how the images are presented on the product details page. Before renaming your image files, see Rename Image Files with the Item Identifier to define the naming conventions. Using the parameters for renaming image files, you can organize how the images… Continue reading Rename Image Files with the Item Identifier

FedEx Ship API-Print Return Label

Ship API The Ship API allows you to integrate FedEx shipping capabilities into your application. Using Ship API, you can process and submit shipping requests for packages to FedEx for both domestic and international shipments, as well as the return shipments. Each shipment request will contain detailed information for shipment and packages. FedEx Shipping categorized… Continue reading FedEx Ship API-Print Return Label

How to extend the Grid, List, and Table Facet templates in SCA

The template for Facet view in PLP page can be updated as shown below. Extend the facet item child view in Facet Browse view. Override the grid, table, list view templates.  _.extend(FacetsBrowseView.prototype.childViews, {           ‘Facets.Items’: function () {             var self = this;             var display_option = _.find(this.itemsDisplayOptions, function (option) {               return option.id === (self.translator.getOptionValue(‘display’) ? self.translator.getOptionValue(‘display’) :… Continue reading How to extend the Grid, List, and Table Facet templates in SCA