Dölj admin-baren för prenumeranter

/** * 2) Dölj admin-baren för prenumeranter */ add_filter( 'show_admin_bar', function( $show ) { if (…

Hindra åtkomst till /wp-admin för prenumeranter

/** * Hindra åtkomst till /wp-admin för prenumeranter */ add_action( 'admin_init', function() { if ( is_user_logged_in()…

eKrea

E-commerce et création

Google Tag Manager

That GTM embed code I gave you is a JavaScript snippet wrapped in HTML tags, and…

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…

1 187 188 189 190 191 211