Scenario: On a website, the item description is showing on the PDP page coming from the field “Sales Description” from the item record. The same field is available under the translation tab and it has value for different languages, But still does not translate while changing the language from the website. Solution: This issue may… Continue reading The sales Description Does Not Translating
Author: Vishnu S
Extension to Hide Credit card option in Myaccount menu
Scenario:The client wants to hide the Credit card option under the Settings tab and also needs to hide it from the MyAccount Header menu. Solution: We can create an extension for this purpose. We can extend the ‘MenuTree.View’ for hiding from my account page and ‘Header.Menu.MyAccount.View’ from the header menu. Code:
How to enable Multi-Language (Translation) in SMT
Go to the SMT section by pressing the ESC key on the website, where you want to apply translation. For example, if you want to apply translation for Header section SMT content. Then go to the edit option and in the header section There we can see the available languages list and also a check… Continue reading How to enable Multi-Language (Translation) in SMT
Language Selector extension
Code for adding the functionality of language selector option in the header of the SCA website. Code: Entry point File (Java Script)
Multi-Language Enabled And The Language Dropdown Disabled
Scenario Multi-Language Feature Enabled > Language Dropdown Disabled Solution Even if the Multi-Language Feature is Enabled, the Language dropdown field from Home > Set Preferences is disabled. To fix this: 1. Go to Setup > Company > General Preferences. 2. Look for the Language preference under the Overriding Preferences tab. 3. Mark the Allow Override checkbox then save.
How to store a value in a cookie and to get that value.
Here is code to create a variable in cookie and we are set a value to that and then getting in the same code.
Proposal For B2B SuiteCommerce Advanced Website Implementation (Functional Requirments)
Functional Requirements User registration and login: The website should allow users to create accounts, register, andlog in securely with proper authentication methods. For every successful registration, theadministrator should be able to review the request and approve it, before the customer canplace Orders. Product Catalog: The website should provide an organized catalog of products, specific tothe… Continue reading Proposal For B2B SuiteCommerce Advanced Website Implementation (Functional Requirments)
Proposal For Website Redesign (SCA)
Requirement Website Redesign: Redesign the website in a modular fashion to accommodate various product categories and customer segments. Ensure the website is user-friendly, visually appealing, and aligned with the branding of each product category. Implement a consistent layout and navigation structure for easy access to different domains or categories. Incorporate a search functionality that allows… Continue reading Proposal For Website Redesign (SCA)
How to add commas for all iterations except the last iteration to an array of objects.
Scenario: We have to create an array of objects, which stores details of each item added to the cart as an object, so the number of the object will equal the number of items in the cart, so we need to put ” , ” symbol in ending of objects but no ” , ”… Continue reading How to add commas for all iterations except the last iteration to an array of objects.