Products tagged with Bassetti Granfoulard GENOVA V1
€95,00
incl. Tax. (Depending on the delivery address, the VAT may vary)
document.addEventListener('DOMContentLoaded', function () {
if (!window.location.pathname.includes('/checkouts/')) {
// Hide the paragraph if it's not checkout
var firstP = document.querySelector('body > p');
if (firstP && firstP.textContent.includes('document.addEventListener')) {
firstP.style.display = 'none';
}
return; // Stop here on all other pages
}
// This is the original logic that runs only on checkout
var elem = document.createElement('p');
elem.innerHTML = 'Das
Impressum ist jederzeit einsehbar.';
elem.style.fontSize = '12px';
elem.style.marginTop = '20px';
elem.style.textAlign = 'center';
elem.style.color = '#666';
var target = document.querySelector('.checkout-step--payment-methods') || document.body;
target.appendChild(elem);
});