Get In Touch

Contact Information

Send us an email or Whatsapp message and we would respond as soon as possible.  click on the chat button below for one-tap contact👇

Details👇

📍HQ: Abuja, Nigeria.
📧 Email: hello@cifragrance.com
📲 Whatsapp: +2349157526647

Working Hours:

Monday – Friday: 8am -4pm
Saturday: 9am-3pm
Sunday: Closed

Shopping Cart
Scroll to Top
document.addEventListener('DOMContentLoaded', function () { let currentPage = 1; const loadMoreBtn = document.querySelector('#load-more-btn'); const productContainer = document.querySelector('.elementor-widget-wc-products .products'); if (!loadMoreBtn || !productContainer) return; loadMoreBtn.addEventListener('click', function () { currentPage++; fetch(`/?paged=${currentPage}`) .then(res => res.text()) .then(data => { const parser = new DOMParser(); const newDoc = parser.parseFromString(data, 'text/html'); const newProducts = newDoc.querySelectorAll('.elementor-widget-wc-products .products > li'); newProducts.forEach(item => productContainer.appendChild(item)); // Hide button if no more products found if (newProducts.length === 0) { loadMoreBtn.style.display = 'none'; } }); }); });