coding standard of Suite Commerce

HTML coding standards in SCA   Use Lowercase Element Names    HTML allows mixing uppercase and lowercase letters in element names.  However, recommend using lowercase element names.  Good Bad Close All HTML Elements    In HTML, you do not have to close all elements (for example the <p> element).  However, it is strongly recommend closing all HTML… Continue reading coding standard of Suite Commerce

User wants to remove the product review ratings when using the product search on their web-store.

Logininto Site Management Tools for your web-store Switch to “Edit” mode Add “CMS HTML” content to “All Pages” area type Add the following JavaScript code to the “HTML Code” field: <script>$(“.itemssearcher-input”).on(“keydown keyup”, function(){‌  hideSearchRatings(1);}); function hideSearchRatings(count){‌  if(count != 0){‌    setTimeout(function(){‌        $(“.global-views-star-rating”).hide(); count+=1;        count !== 10 ? hideSearchRatings(count) : count =… Continue reading User wants to remove the product review ratings when using the product search on their web-store.

Configuring Web Fonts on SMT

Go to Commerce > Websites > Configuration Select the website and domain where the theme is activated and click Configure Navigate to the Theme name > Web Fonts subtab To improve page load when web fonts are loaded, check the Load Web Font Scripts Asynchronously box. If required, you can add a font style to the Google Families list. You may follow SuiteAnswer: 92940 Configuring… Continue reading Configuring Web Fonts on SMT

Display available quantity for matrix child items

scenario – Display available quantity for matrix child items.  child items means red with large, blue with medium, only colour  items ect…  explanation- We can display available quantity for matrix child items in    checkout page and shopping page . using below code to we can display . based on the page we can extend… Continue reading Display available quantity for matrix child items

Page Not Found Error for SMT Landing Pages

Suite Commerce Advanced (SCA), landing pages created using the Site Management Tools (SMT) may generate 404 Page Not Found Errors. If you experience this issue and cannot migrate to the latest release, you can fix this issue as described in the following procedure.To implement this patch, create a custom module to override the Application.js file, which… Continue reading Page Not Found Error for SMT Landing Pages

Remove Quantity Pricing in PDP Without Disabling the Quantity Pricing Feature

Go to the SuiteCommerce website Press Escape Login as using credentials with Administrator or any role with SMT access Navigate to an item Click the item to redirect to it’s product details page. On the Site Management Tools Toolbar click Edit Mode > Click Add Content mode Drag the CMS HTML content to the  Productdetails.full.view Pages area  On the HTML Code text area insert the following script… Continue reading Remove Quantity Pricing in PDP Without Disabling the Quantity Pricing Feature

Accordion button action

<div class=”accordion”> <div class=”accordion-item”> <div class=”accordion-item-header”> Why is Enlighten better than my budget whitening system? </div> <div class=”accordion-item-body”> <div class=”accordion-item-body-content”> Web Development broadly refers to the tasks associated with developing functional websites and applications for the Internet.</div> </div> </div> <div class=”accordion-item”> <div class=”accordion-item-header”> How Do I Know My Dental Practice Is Right For Enlighten? </div>… Continue reading Accordion button action

Customize the Loading Icon

SuiteCommerce and SuiteCommerce Advanced web stores track all HTTP CRUD requests that are initiated with jQuery.ajax() and its wrappers. Accordingly, the application will ‘know’ when data is being sent or received and can show an icon, animation or some other message indicating that it’s busy. here we are customizethat loading icon. If you just need to change… Continue reading Customize the Loading Icon

Add footer to your website.

create five configuration for footer content but we have default configuration for that configuration we have to create sub configuration for changing content for footer. Code for that{ “type”: “object”, “subtab”: { “id”: “myfooter”, “group”: “extensions”, “title”: “myfooter” }, “properties”: { “myfooter1.config”: { “group”: “extensions”, “subtab”: “myfooter1”, “type”: “string”, “title”: “myfooter_titel1”, “description”: “Config description example”,… Continue reading Add footer to your website.