Skip to content

Phones

Customer Service:

WhatsApp: +965 60775006

 

Branch 1:

Phone: +965 24817923

WhatsApp: +965 67715670

Branch 2:

Phone: +965 24845617

Branch 3:

Phone: +965 65051202

WhatsApp: +965 65051202

Branch 4:

Phone: +965 66696245

WhatsApp: +965 66696245

Compare products

{"one"=>"Select 2 or 3 items to compare", "other"=>"{{ count }} of 3 items selected"}

Select first item to compare

Select second item to compare

Select third item to compare

Compare
.product-single__description .more-text{ display: none; } 3. Asset->theme.js-> paste code in bottom of file $(document).ready(function(){ var maxLength = 300; $(".product-single__description").each(function(){ var myStr = $(this).text(); if($.trim(myStr).length > maxLength){ var newStr = myStr.substring(0, maxLength); var removedStr = myStr.substring(maxLength, $.trim(myStr).length); $(this).empty().html(newStr); $(this).append(' read more...'); $(this).append('' + removedStr + ''); } }); $(".read-more").click(function(){ $(this).siblings(".more-text").contents().unwrap(); $(this).remove(); }); });