To access the cookie preferences of a customer from the customer record in NetSuite, the SuiteCommerce Analytics Data feature must be enabled. This method retrieves a list of key/value pairs representing the cookie names and their corresponding boolean values (true or false), along with the last date the customer updated the preferences. It’s important to… Continue reading Cookie preferences of a customer
Category: SuiteCommerce
Default validation message is not showing for newsletter
For showing In normally if we didn’t enter anything in email field it will shows an error message but if message is not getting we need to customize and created a new extension for that and check Configuration : { “type”: “object”, “subtab”: { “id”: “Newsletter”, “group”: “extensions”, “title”: “Newsletter” }, “properties”: { “newsletter.FirstName”: {… Continue reading Default validation message is not showing for newsletter
Facet Troubleshooting
Facets can often show errors if not configured correctly. Below are some basic checks to make sure that your facets are correctly set up if you are seeing errors on the site. The most common error is to see the header of the facet display the Field ID instead of the correct header (or no… Continue reading Facet Troubleshooting
Hiding Undesirable Facet Fields in the PLP
If you include an item field as a facet field in the website setup record, it is possible that the field will show up as a filter in the sidebar of the PLP. Follow these steps to hide that field from the PLP while still retaining usage of the field elsewhere on the site. Instructions… Continue reading Hiding Undesirable Facet Fields in the PLP
How to set up Auto Approval for Advanced Sign Up
Context When using the Advanced Sign Up bundle in SuiteCommerce, your client may want certain (or all) customers to be automatically approved when they register. There is native functionality that allows you to do this. This article explains how to set up that functionality. Auto Approval General flow of Auto Approval The auto approval process… Continue reading How to set up Auto Approval for Advanced Sign Up
To add read more option for the large text
when we have to show large text in a small div instead of giving overflow:scroll directly we can give Read more option so that user can know there is more text below> Solution. Create a div in html file. <button class=“read-more”>Read More</button> create a even for that button as shown below. Write the CSS code… Continue reading To add read more option for the large text
Sitebuilder website cart update for minimum order
In sitebuilder website cart page to set a minimum order message need to update in shopping cart tab. When minimum order amount is below $35. Then a message will show and the the checkout button made disable. var stotal = $(“#carttablerowtotal .carttablecellamount”).text().slice(1).replace(/,/g, ”); var st = Number(stotal).toFixed(2); if (st < 35) { $(“<span class=’minimumorder’>A minimum… Continue reading Sitebuilder website cart update for minimum order
Minimum Web Store Order Amount
You can restrict customers from checking out of your web store until they have reached a minimum total sales amount. If you have multiple subsidiaries and use multiple currencies in your web store, you can set a minimum order amount for each currency that is marked online. Use the following steps. To set a minimum… Continue reading Minimum Web Store Order Amount
Shipping bar extension
We can add shipping bar extension to add shipping bar’s in the website. We can display various messages to customers based upon how much progress they have made toward free or special rate shipping. When the cart value meets the minimum required for free or special rate shipping, a congratulations message is displayed. While the… Continue reading Shipping bar extension
To display any standard or custom item field on the Product Details Page (PDP)
We can create our own custom field and also able to display any standard or custom item field on PDP in SKU format using SC custom field extension. To add custom fields on the PDP, we must add several fields to the field set for the site. In addition, to display the custom fields on… Continue reading To display any standard or custom item field on the Product Details Page (PDP)