Granting User Access to Transaction History

Scenario The Financial History permission is required for users to view transaction history. Some roles have this permission by default, such as accounting clerks and sales administrators. An administrator can provide other users with access to transaction histories by customizing their roles to include the Financial History permission. To create a custom role with transaction… Continue reading Granting User Access to Transaction History

Website Hosting Files folder is missing in the File CabinetApplies

Scenario Display Website Hosting Files folder in the File Cabinet Solution When developing or customizing a web site, the Host HTML files feature may need to be enabled. This allows NetSuite users to access the Web Site Hosting Files folder in the File Cabinet. To enable the Host HTML Files feature, do the following steps: 1. Navigate to Setup > Company > Enable Features.  2.… Continue reading Website Hosting Files folder is missing in the File CabinetApplies

Update Default Credit Card to False on the Customer Record via CSV Import

Scenario Use CSV Import to unset Credit Cards as Default on Customer records in bulk when Payment Instrument feature is disabled. Solution 1. Create aCSV file with the following columns: Internal Id [of the Customer] ID [of the Credit Card that needs to be unset as default] Default Credit Card = No/Yes Note: In order to see… Continue reading Update Default Credit Card to False on the Customer Record via CSV Import

Hide Website Category From An Audience 

Scenario At times, users would like to hide certain item catalogs or categories from a select group of customers or audiences to better market their items at the right demographic. This can also be used when setting up new categories before officially launching them on the website. Solution In order to hide web site categories… Continue reading Hide Website Category From An Audience 

To Solve the issue of unwanted Space on the Top of  Website Page In Mobile And Tab View.

Scenario  When we open webpage in Mobile View And Tab view we get some blank space on the top of page when we scroll the page  Then the Header of the page may change their Position  this Issue will be in Each and every Page. Solution When we get this kind of issue we need… Continue reading To Solve the issue of unwanted Space on the Top of  Website Page In Mobile And Tab View.

Add Standard Header and Footer in Checkout Page

By default Theme setting we don’t have footer in Checkout out page.If we want to add Standard Header and  Footer in checkout page we can follow the below steps. Solution Commerce> Website> Configuration select website and domain Click Checkout tab in checkout tab Enable Standard Header and footer  save the changes  Clear the cache. Now Standard… Continue reading Add Standard Header and Footer in Checkout Page

Auto Hide the Element Or Div In website after few second According to given time.

When we want to hide some div or Html Element After some time we can use the below code Example HTML <div id=”hideDiv”>  This div will hide automatically after 5 seconds</div> CSS #hideDiv{background:red; width:400px;  margin:0 auto; color:#fff; padding:10px;  text-align:center;} JS $(function() {setTimeout(function() { $(“#hideDiv”).fadeOut(1500); }, 5000) }) Note: The Above code is for reference only… Continue reading Auto Hide the Element Or Div In website after few second According to given time.

Rearrange number of categories

If we want to Rearrange the number of categories According to our need we can follow the below Code The Below code is for rearranging the item in Product page Note:-According to the page the class name will vary so we need to take care of that Code .facets-category-cell {text-align: center;//width: $sc-subcategory-width;//flex-basis: $sc-subcategory-width;width:50%;flex-basis: 50%;padding:20px;text-align: center;margin-bottom:… Continue reading Rearrange number of categories