Integrate the SCA website with AgeChecked for place the order on basis user’s age
Category: NS SuiteCommerce Advanced
All articles / code related to SuiteCommerce advanced
Add a new button to the checkout
RequirementAdd the “Continue” button below the order summary section. As default, the continue button in checkout appears at the bottom of the page SolutionUse extensiblity API checkout module:
ERR: … is not defined
Sometimes when you call third party libraries to your website or webpage you may get an error in console like “…. is not defined”. For example if I try to add owl carousel to the website, I should add the script tag and use the function owlCarousel({ params }) in the code, and when I… Continue reading ERR: … is not defined
SCA Implementation Proposal
GG-1Link: https://docs.google.com/document/d/1n-zyDSJ5_4co-WkMMtAwLeIT3CBUL7UrwiPvQ3JMzlE/edit?usp=sharing Requirement The current websites need to be migrated to NetSuite suitecommerce. https://herba-online.com/ https://herba-online.es/ https://herbashop.co.za/ The client would like to show specific items to each website. So provide the solution to achieve it in the proposal. Analyze the full website and prepare a quote to redevelop the same in SCA with the above functionality… Continue reading SCA Implementation Proposal
SCA Upgrade Proposal
SA-1 RequirementTechnology Going Forward We will continue to use NetSuite as our ERP, CRM, Accounting, and will use Advanced Suite Commerce as our website. We use a third party integrator to connect our 3PL locations and marketplace platforms to NetSuite. We currently do business with Amazon Vendor, Amazon Seller, Walmart, distributors and our website. Factors… Continue reading SCA Upgrade Proposal
Site Builder to SCA Proposal
SQUIP-321 Requirement The client would like to develop a SCA website using the latest SCA version 2021.1.1 with new design (without using the existing bundles from AVT). All the existing functionality should be present in the new website. Proposed Solution Design – Jobin & Jismi will be responsible for creating and providing the designs for… Continue reading Site Builder to SCA Proposal
Templates in Site builder
We can add the templates for Category page, PLP, PDP,Home page ,Information item and related cell in the netsuite. For that navigate to Setup>Site builder>item/category templates>edit the template we want.For applying this template to netsuite we have certain method. One of the method is,1.Setup>site builder>setup website2.In the appearance subtab you can add the template for… Continue reading Templates in Site builder
How to add text that includes static and dynamic text
NB-166 Product Listing Page
Backbone.cache.model
A simple module to add a localstorage cache to Backbone.sync. Objects you have already fetched are retrieved from the local cache. If the object isn’t cached, it falls back to ‘Backbone.sync’ which does not need to be the default implementation, so it should be compatible with any custom sync implementations. To use, extend Backbone.CachedModel instead… Continue reading Backbone.cache.model
Async functions
An async function is a function declared with the async keyword. Async functions are instances of the AsyncFunction constructor, and the await keyword is permitted within them. The async and await keywords enable asynchronous, promise-based behavior to be written in a cleaner style, avoiding the need to explicitly configure promise chains. Async functions may also… Continue reading Async functions