Head MAster
Shop Doggyography Training ContactContinue reading
Join 2,000,000+ Professionals who use WPCode to Future-Proof Their Websites!
Shop Doggyography Training ContactContinue reading
/* ================================================================= RAVER DOGS – HEADER V2 STYLESHEET ================================================================= */ /* — 1. Global & Body Styles — */ body { color: #FFFFFF; font-family: “brandon-grotesque”, sans-serif; font-size: 18px; font-weight: 700; /* Bolder font for menu */ line-height: 1.6; } /*…Continue reading
document.addEventListener(‘DOMContentLoaded’, function() { const menuToggle = document.querySelector(‘.menu-toggle’); // Check if the toggle button exists if (menuToggle) { menuToggle.addEventListener(‘click’, function() { // Toggle a class on the element document.body.classList.toggle(‘nav-is-open’); }); } });Continue reading
function custom_login_logo_url() { return home_url(); // Or your desired URL } add_filter( ‘login_headerurl’, ‘custom_login_logo_url’ );Continue reading
add_action(‘after_setup_theme’, ‘remove_admin_bar’); function remove_admin_bar() { if (!current_user_can(‘administrator’) && !is_admin()) { show_admin_bar(false); } }Continue reading
.mc_vertical_menu h3 { font-weight: 600 !important; }Continue reading
/** * Limit WordPress revisions to 5 for all post types. */ add_filter(‘wp_revisions_to_keep’, function ($num, $post) { return 5; }, 10, 2);Continue reading
Totally fair, Warren — this part trips up a lot of people. Let’s break it down clean and clear: 🧠 The Two Parts of GTM Code 1. The Short Code This is your GTM Container ID — it looks like:…Continue reading