Enable Clean “Back” Button URL Reference

document.addEventListener(‘DOMContentLoaded’, function() { document.querySelectorAll(‘a[href=”#back-clean”], a[href=”#_back-clean”]’).forEach(function(btn) { var fallbackText = btn.getAttribute(‘data-rd-back-fallback-text’); if (fallbackText && !document.referrer) { btn.textContent = fallbackText; } }); }); document.addEventListener(‘click’, function(e) { var btn = e.target.closest(‘a[href=”#back-clean”], a[href=”#_back-clean”]’); if (!btn) { return; } e.preventDefault(); e.stopPropagation(); e.stopImmediatePropagation(); var fallbackUrl =…Continue reading

Admin Styles

/* * Arquivo: admin-style.css – Versão Final Corrigida * Correções: Eliminação total de azuis/cores WP em hovers/actives, melhoria do contraste dos ícones. */ /* Variáveis CSS para gerenciamento de cores e tamanhos */ :root { /* Cores de Fundo e…Continue reading

Hard-Disable TEC Zoom/Webex (DB Password Check Fix)

add_action( ‘init’, function () { // Only run if TEC/tribe() container exists. if ( ! function_exists( ‘tribe’ ) ) { return; } /* Disable Zoom provider actions */ $zoom_provider = tribe( \Tribe\Events\Virtual\Meetings\Zoom_Provider::class ); if ( $zoom_provider instanceof \Tribe\Events\Virtual\Meetings\Zoom_Provider ) {…Continue reading