Vinny's
Named for fashion industry veteran Mr. Virgil Nicholas' son, Vinny's was originally founded in 2020 for the sole purpose of bringing leather loafers to the forefront of fashion culture. Crafted with timelessness and quality in mind, the thoughtfully understated lineup of shoes are handmade in Portugal with high-quality leather and meticulous craftsmanship meant for long-term wear. In the label’s own words; they create the “Classics of tomorrow”.
{
let form = $refs.filter_form
const queryString = new URLSearchParams(new FormData(form)).toString()
fetch('/collections/vinnys?' + 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/vinnys?' + queryString + '&sort_by=created-descending');
})
.catch(error => console.error('Error:', error));
});">
Sort
Filter