Produced from expanded polystyrene, containing a flame retarding additive.
This is a preview of the recently viewed products by the user.
Once the user has seen at least one product this snippet will be visible.
Recently viewed Products
(function () {
// Fire only on the cart page (handles language prefixes & query strings)
var path = location.pathname || '';
if (path.indexOf('/shop/cart') === -1) return;
// Wait for gtag to exist (in case it loads async)
var fired = false;
function fireConversion() {
if (fired) return;
if (typeof gtag === 'function') {
fired = true;
gtag('event', 'ads_conversion_Shopping_Cart_1', {
// add parameters if you want, e.g. value, currency, items
// value: 0,
// currency: 'GBP'
});
}
}
// Try a few times in case gtag loads late
var tries = 0;
var tick = setInterval(function () {
tries++;
fireConversion();
if (fired || tries > 20) clearInterval(tick); // ~10 seconds total
}, 500);
// Also try on window load
window.addEventListener('load', fireConversion);
})();