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)