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

to add WordPress WooCommerce WhatsApp checkout (copy)

// Exit if accessed directly if (!defined(‘ABSPATH’)) { exit; } // Check if WooCommerce is active if (!in_array(‘woocommerce/woocommerce.php’, apply_filters(‘active_plugins’, get_option(‘active_plugins’)))) { add_action(‘admin_notices’, ‘superwp_wc_not_active_notice’); function superwp_wc_not_active_notice() { ?>Continue reading