VC Reveal — Global CSS ── Version: 1.0.0

/* *VC Reveal — Global CSS * Version: 1.0.0 * * ── WHERE TO ADD THIS ────────────────────────────────────────────────────── * * Oxygen Builder → Manage → Settings → Custom CSS (preferred) * OR a WPCode CSS snippet set to inject in *…Continue reading

Mark current link including parent

// Target only main navigation const mainNav = document.querySelector(‘#menu-main-menu’); if (mainNav) { const currentPath = window.location.pathname; mainNav.querySelectorAll(‘a’).forEach(link => { const linkPath = new URL(link.href).pathname; // Exact match – current page if (linkPath === currentPath) { link.classList.add(‘active’); link.parentElement.classList.add(‘current-menu-item’); // Add to…Continue reading

Untitled Snippet

CV. ABIMACHINARY — Bengkel Maintenance & Mesin UMKM, Perkebunan & Pertanian Beranda Tentang Kami Layanan Produk Hubungi Kami Konsultasi CV. ABIMACHINARY — MALANG, JAWA TIMUR BENGKEL MAINTENANCE& READY MESIN UMKM, Perkebunan & Pertanian Kami melayani perbaikan dan perawatan mesin produksi,…Continue reading

GA4 Custom Event Tracking

/** * GA4 Custom Event Tracking * Tracks lead method, service type, page type, neighborhood, ZIP code, link text, and link URL. */ (function() { function getServiceType() { const path = window.location.pathname.toLowerCase(); if (path.includes(‘tv-mounting’)) return ‘tv-mounting’; if (path.includes(‘mirror-mounting’)) return ‘mirror-mounting’;…Continue reading

Untitled Snippet

{ “data”: [ { “action_source”: “system_generated”, “custom_data”: { “event_source”: “crm”, “lead_event_source”: “Your CRM” }, “event_name”: “Lead”, “event_time”: 1673035686, “user_data”: { “em”: [ “7b17fb0bd173f625b58636fb796407c22b3d16fc78302d79f0fd30c2fc2fc068” ], “lead_id”: 1234567890123456, “ph”: [ “6069d14bf122fdfd931dc7beb58e5dfbba395b1faf05bdcd42d12358d63d8599” ] } } ] }Continue reading

Inner Pages CSS

/* ============================================================ MYTHOS — Site-wide Inner Page Theme Load via: WPCode Pro → Add Snippet → CSS Snippet → Site Wide Purpose: dark-themes the GeneratePress chrome + Gutenberg page content on every NON-home page, so inner pages match the self-contained…Continue reading