Valentine's Day
From subtle necklaces and sparkling rings to delicately crafted earrings, each piece in the Lisa&Co collection. it is meant to reflect the emotions and strong bonds between lovers.
Using the highest quality materials such as fine silver and precious stones, each piece of jewelry is a symbol of love immortalized in time, worn with pride and joy by those who wish to express their deepest feelings in an elegant and subtle.
refine
clear all
- sort by:
- RON - RON
apply
reset
{
// Read existing query params
let existingParams = new URLSearchParams(window.location.search);
// Grab form data
const form = new FormData($refs.filter_form);
// If testD == false, remove price filters
if (form.get('testD') === 'false') {
form.delete('filter.v.price.gte');
form.delete('filter.v.price.lte');
}
// Convert form data to new URLSearchParams
let newParams = new URLSearchParams(form);
// Merge existing params into newParams
for (let [key, value] of existingParams.entries()) {
if (! newParams.has(key)) {
newParams.set(key, value);
}
}
// Redirect with merged query string
loading = true;
const finalQuery = newParams.toString();
window.location.href = `${window.location.pathname}?${finalQuery}`;
})
">