Menu
Your Cart

Shopping Cart

Your shopping cart is empty!

Upsell opportunity! Optionally display Related or Also Bought products based on those already in the cart. This is the Layout Notice module, it can be used to display any text or HTML content, in any position.

$(document).ready(function() { const interval = setInterval(function() { const $element = $('.page-title span'); if (!$element.length) return; const text = $element.text(); if (text && text.includes('(0.00kg)')) { $element.text(text.replace('(0.00kg)', '').trim()); clearInterval(interval); // 找到后停止轮询 } }, 100); // 每100ms检查一次 });