Cookie preferences of a customer

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

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

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

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)