Add a Message Section on Checkout Page

To add a new message section under the “Order Summary” and “Promo Code” section on the checkout page. This message will provide a contact number for customers to call in case they face any issues during checkout. The message will always be displayed. Solution: Added a new help message section under <section id=”wizard-step-content-right”></section> to provide… Continue reading Add a Message Section on Checkout Page

Hide Content with an Expander

Adding an Expander The only changes required are to the template and Sass. First, you should start by creating a container element for your expander. This needs to contain two children: a ‘head’ element, which is what always shows and will trigger the expansion when clicked, and a ‘body’ element which is what shows when… Continue reading Hide Content with an Expander

display:flex and flex values in css

In CSS, the display: flex property is used to create a flex container, and it enables a flex context for its direct children    display: flex;  The display: flex; property is applied to a container element to enable the Flexbox layout. It establishes a flex container and turns its direct children into flex items.   … Continue reading display:flex and flex values in css

Show custom HTML tables/components inside the NetSuite record

We can add custom HTML tables/components inside any NetSuite record body or subtabs using an ‘Inline HTML’ field. For this first create a ‘inline HTML’ field inside the required record. Add the HTML code in the ‘Default value’ field under the ‘Validation & Defaulting’ subtab in the field record. For this, we can check the… Continue reading Show custom HTML tables/components inside the NetSuite record

Acceptable file types

The accept attribute specifies a filter for what file types the user can pick from the file input dialog box. The accept attribute can only be used with <input type=”file”>

Issue with product name in the SCA website

Some of the items name is showing incorrectly with HTML code in the webstore as below image. Solution: Inspect the code and find the class name and search it in the theme. In the theme the code might be having only 2 {}.For example the code might be as follows. For HTML the code changed… Continue reading Issue with product name in the SCA website