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
Tag: HTML Code
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
HTML code to add toaster
<style> /* Toaster Container */ .toaster { position: fixed; top: 20px; right: 20px; z-index: 9999; } /* Toaster Notification */ .toast { background-color: #333; … Continue reading HTML code to add toaster
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
HTML page that resembles the Netsuite assistant interface.
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”>
NPS Survey
Requirement Ox Tools Global wants to set up an NPS survey within NetSuite. The customers will receive an email once in 90 days. The user will click on the number from 1 to 10 to add customer Feedback value. The reporting feature is also required. Solution We will create a script to execute daily and… Continue reading NPS Survey
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
CSS Toggle Switch
Toggle switch has become one of the popular form elements in mobile apps, sometimes, on desktop website. It makes perfect sense while we use it on touch screen devices because it works exactly like those switches in our living space.