We can solve the ‘Impossible to parse backend error – Response’ error by changing the manifest vendor name or changing the extension vendor name from record types. This error happening because of the vendor name is case sensitive. So we can use only same vendor name for all extensions. If we created new extension with… Continue reading Solution for ‘Impossible to parse backend error – Response’.
Author: Arjun S
How to find the image URL while clicking on the options label in a PDP page using ‘afterOptionSelection’ event.
By using the event afterOptionSelection we can find the URL of the respective image.
How to move the slider to a specific image (item) in BX slider
We can move the slider to specific image in Bxslider using javascript
Form validation using jQuery
we will be validating a simple form that consists of a username, password and a confirmed password using jQuery.
Accordion Action of facets in the active category page.
The subcategory of the currently viewed page and its child items are shown in facet. Tamplate
How to rotate arrow icon 180 degrees onclick.
We can create rotating icon on dropdown list, that activate when click on icon. Extension: _.extend(FacetsFacetedNavigationItemCategoryView.prototype, { template: jj_subcategory_plpsubcategory_tpl, events: _.extend(FacetsFacetedNavigationItemCategoryView.prototype.events, { ‘click .subdiv2’: ‘hide’, … Continue reading How to rotate arrow icon 180 degrees onclick.
How to create Search filed for filtering brand in facet.
We can create a search field for filtering brand items from facet.
How to display subcategory and its child items in facet
we can display subcategory and its child items in facet, it is three-layer view of facet category.
Solution for the issue”The item images is not available on PLP,PDP pages”
when you first configuring netsuite account, will see that there are currently no product images associated with the item in the Web Store subtab, Associated Images sublist. As a result, the default “Image not available” placeholder is being displayed in the web store.Then, Navigate to Documents > Files > File Cabinet and click on the… Continue reading Solution for the issue”The item images is not available on PLP,PDP pages”
Sending email from extension. Using ‘nlapiSendEmail()’.
Create emailbody in SuiteScript, after that add the emailbody in nlapiSendEmail(). This is the syntax ‘nlapiSendEmail ( from , to , subject , body , cc , bcc , records , files )’. After that send the mail, if mail is not received at recipient, we can set some permissions in user. First take extension… Continue reading Sending email from extension. Using ‘nlapiSendEmail()’.