A brief report of the first days Laos:Frans Vandenbosch 19.10.2024Kunming, Boten, Luang Prabang. Wednesday evening 16.10.2024 again had a really good meal in Kunming. Noodles with seafood and “Yunnan Bridge” soup:On 17.10.2024 in Kunming, Yunnan, China took the new HST train to Lao ...
  • 2024-11-09
Some pictures from the second week in Laos and the first days in Chiang Mai, Thailand:Frans Vandenbosch 27.10.2024  In Luang Prabang there is an excellent western bakery. Recommended:No coins in Laos. Only banknotes with huge numbers:Wednesday afternoon 23.10.2024 with an ATR72 turboprop of La ...
  • 2024-11-09
These are the pictures of the last leg of my tour through Asia.Chiang Mai, Koh Samui, Bangkok  Frans Vandenbosch 04.11.2024  From Luang Prabang in Laos to Chiang Mai in ThailandChiang Mai.So proud on his VW Golf:.Khantoke   Is a famous dish in Chiang MaiIt is made with Northern style ...
  • 2024-11-07

大家都在搜

My Wechat

微信公众号
// 1. List of EXACT field titles to remove (case-sensitive) const FIELDS_TO_NUKE = [ "Tags *", "Date", "Language", "Tag", "List", "Tag1", "Tag2", "Tag3" ]; // 2. MAIN REMOVAL FUNCTION (runs repeatedly until success) function nukeFieldsWithExtremePrejudice() { FIELDS_TO_NUKE.forEach(fieldTitle => { // Find ALL labels on page const labels = document.querySelectorAll('.mailpoet_form_field label'); labels.forEach(label => { // Check if label text MATCHES exactly (trim whitespace) if (label.textContent.trim() === fieldTitle) { // Remove the ENTIRE field group (label + hidden input) const fieldGroup = label.closest('.mailpoet_form_field'); if (fieldGroup) { fieldGroup.remove(); console.log('NUKED:', fieldTitle); // Debug log } } }); }); } // 3. RUN IT WITH OBSERVER + INTERVAL (catches dynamic loading) const observer = new MutationObserver(nukeFieldsWithExtremePrejudice); observer.observe(document.body, { childList: true, subtree: true }); // 4. Run every 500ms until fields are gone (safety net) const nukeInterval = setInterval(nukeFieldsWithExtremePrejudice, 500); // 5. Stop when fields are confirmed gone setTimeout(() => { if (document.querySelectorAll('.mailpoet_form_field').length === 0) { clearInterval(nukeInterval); observer.disconnect(); } }, 3000); // Stop after 3 seconds