جوز البقان (500 جم)

د.إ 50

في المخزن
Key info:

الوزن: 500 جرام
صنع فى أمريكا

wws Olivkart تحتاج مساعدة؟ تواصل معنا عبر الواتس اب
الوصف

البقان هو جوز من نوع من أشجار جوز موطنها شمال المكسيك وجنوب الولايات المتحدة. الجوز هو قوة تغذية محملة بالفيتامينات والمعادن.

على الرغم من أنها تحتوي على قائمة طويلة من العناصر الغذائية الأساسية ، إلا أنها تحتوي أيضًا على نسبة عالية من السعرات الحرارية والدهون ،

معلومات إضافية
الوزن 0.5 كيلوجرام

⚠️ تنبيه

في حال وجود أي مشكلة صحية، يرجى التواصل مع المورد أو استشارة الطبيب قبل طلب هذا المنتج.

Scroll To Top
Close
Close
Close

سلتي

jQuery(function ($) { function getCurrentCurrency() { // Detect current currency from the order total var text = $('.order-total').text().toUpperCase(); if (text.indexOf('SAR') !== -1 || text.indexOf('ر.س') !== -1) { return 'SAR'; } return 'AED'; } function updateCurrencySuggestion() { var $box = $('#olivkart-currency-box'); if (!$box.length) { return; } var currency = getCurrentCurrency(); var country = $('#billing_country').val(); var html = ''; // Saudi selected but showing AED if (country === 'SA' && currency === 'AED') { html = `
🇸🇦 Shipping to Saudi Arabia?

Switch your prices to Saudi Riyal (SAR).

`; } // UAE selected but showing SAR else if (country === 'AE' && currency === 'SAR') { html = `
🇦🇪 Shipping to UAE?

Switch your prices to UAE Dirham (AED).

`; } $box.html(html); if (html === '') { $box.hide(); } else { $box.show(); } } updateCurrencySuggestion(); $(document.body).on('updated_checkout', function () { updateCurrencySuggestion(); }); $(document).on('change', '#billing_country', function () { setTimeout(function () { $('body').trigger('update_checkout'); setTimeout(updateCurrencySuggestion, 400); }, 100); }); $(document).on('click', '.switch-currency', function (e) { e.preventDefault(); var currency = $(this).data('currency'); // Try WPML dropdown first var $switcher = $('.wcml_currency_switcher select'); if ($switcher.length) { $switcher.val(currency).trigger('change'); return; } // Cookie fallback document.cookie = 'wcml_client_currency=' + currency + ';path=/'; location.reload(); }); });