Limit Revisions
/** * Limit WordPress revisions to 5 for all post types. */ add_filter('wp_revisions_to_keep', function ($num, $post)…
Font Weight correction for Menu Subcategories
.mc_vertical_menu h3 { font-weight: 600 !important; }
Disabling the Admin Bar for Non-Admin Users
add_action('after_setup_theme', 'remove_admin_bar'); function remove_admin_bar() { if (!current_user_can('administrator') && !is_admin()) { show_admin_bar(false); } }
Changing the WordPress Login Logo URL
function custom_login_logo_url() { return home_url(); // Or your desired URL } add_filter( 'login_headerurl', 'custom_login_logo_url' );
Mobile Menu Toggle Script
document.addEventListener('DOMContentLoaded', function() { const menuToggle = document.querySelector('.menu-toggle'); // Check if the toggle button exists if (menuToggle)…
RAVER DOGS - HEADER V2 STYLESHEET
/* ================================================================= RAVER DOGS - HEADER V2 STYLESHEET ================================================================= */ /* --- 1. Global & Body…
master home page final
Shop Doggyography Blog Contact More than a collar. A nightly transformation. An expression of identity. A…
New to affiliate marketing? Learn step-by-step how to build your first website, create content, and start earning online.
New to affiliate marketing? Learn step-by-step how to build your first website, create content, and start…
Logged in User Drop Down Menu
Along with the Avatar and User Shortcode Snippet, this can display a nice logged in User…
Jetpack Instant Search Wholesale Visibility
Hide the "wholesale" product category from Jetpack Instant Search results and filters for non-wholesale users (role:…
footer forever
Navigate Home Shop Doggyography Training Contact Follow The Pack IG TT FB YT Join The Pack…
Elementor Shrinking Header Snippet
/* shrinking header section */ .shrinker { background: transparent; height: (set your header height in pixels);…