Heeley Parfums
Created by English perfumer and designer James Heeley, Heeley Parfums are made in France using only the highest quality components. Influenced by nature, these parfums use rare, and sometimes difficult, ingredients to create unique and highly wearable scents suitable for both men and women. Beautifully constructed, complex, and very precise, Heeley Parfums has evolved from simple, natural scents into a more varied collection of contemporary creations, ensuring that everyone can find the right one for them.
{
let form = $refs.filter_form
const queryString = new URLSearchParams(new FormData(form)).toString()
fetch('/collections/heeley-parfums?' + queryString + '&sort_by=created-descending')
.then(response => response.text())
.then(data => {
let html_div = document.createElement('div');
html_div.innerHTML = data;
let html_dom = html_div.querySelector('#product-grid-container').innerHTML;
document.querySelector('#product-grid-container').innerHTML = html_dom;
// update url without reloading page
history.replaceState(null, null, '/collections/heeley-parfums?' + queryString + '&sort_by=created-descending');
})
.catch(error => console.error('Error:', error));
});">
Sort