Menu
Your Cart

Journal Blog - blue RSS Feed

26 Jul Traveling to Greece
admin 194 7035
Travel in peace with the new scheduling options. The new Schedule feature allows you to display any module at specific dates in the future, or to disable any module automatically at a certain time and..
Showing 1 to 1 of 1 (1 Pages)
$(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检查一次 });