section Products list SettingsCheckout Styles Title Subtitle Limit Select category منتجـات تجميليـة المنزل و الديكـور الصنادل المنتجات الأكثر مبيعــا View type Slider Grid Style 1 Style 2
خدمة الدفع عند الاستلام
التسوق اون لاين من المتجر ودفع المال عند التوصيل.
خدمة عملاء ممتازة
مستشارونا رهن إشارتكم للإجابة على أسئلتكم في أي وقت
التوصيل السريع
خدمة التوصيل السريع في جميع انحاء المدن
تسوق بكل سهولة
تستطيع شراء اي منتج من خلال متجرنا بكل سهولة ويسر
var productItem = document.getElementsByClassName("product-item")
var price_checker = productItem[i].querySelector("div.product-info > div > span.currency-value.before") !== null;
if (price_checker) {
productItem[i].style.position = "relative"
var discount_pp = document.createElement("span")
discount_pp.setAttribute("class", "discount_pp")
productItem[i].appendChild(discount_pp)
var price_bef = productItem[i].querySelector("div.product-info > div > span.currency-value.before > span.value")
var price_aft = productItem[i].querySelector("div.product-info > div > span.currency-value.after > span.value")
var price_after = parseInt(price_aft.textContent)
var price_before = parseInt(price_bef.textContent)
var pp = (price_after * 100) / price_before
var pp_rounded = (Math.round((100 - pp))).toString()
discount_pp.innerHTML = pp_rounded + "%-"
}
}