Category: Admin
Formidable Forms Custom Access Denied/Link Expired Message
Access Denied If you landed here after clicking a link, the link might have expired.Continue reading
Generate Custom Branded WP Maintenance Page
function rd_client_write_maintenance_dropin() { if ( !function_exists(‘rd_client_get_brand_tokens’) || !function_exists(‘rd_client_brand_css_vars_from_tokens’) || !function_exists(‘rd_client_get_favicon_url’) || !function_exists(‘rd_client_get_logo_url’) ) { return new WP_Error(‘rd_tokens_missing’, ‘Brand token helpers are not loaded.’); } $tokens = rd_client_get_brand_tokens(); $vars_css = rd_client_brand_css_vars_from_tokens($tokens); $site = get_bloginfo(‘name’); $favicon = rd_client_get_favicon_url(); $favicon_attr = ”; if…Continue reading
[NO LONGER REQUIRED] Style Custom WP Error Page
if ( ! defined(‘RD_WP_DIE_BRANDER’) ) { return; } add_filter(‘rd_wp_die_head_css’, function ($css) { // Load tokens and convert to CSS variables $tokens = rd_client_get_brand_tokens(); $vars = ‘:root{‘.rd_client_brand_css_vars_from_tokens($tokens).’}’; $css .= $vars .Continue reading
WP Error Page Customisation
if (!defined(‘RD_WP_DIE_BRANDER’)) { define(‘RD_WP_DIE_BRANDER’, true); } function rd_wp_die_user_is_admin(): bool { return is_user_logged_in() && current_user_can(‘manage_options’); } function rd_wp_die_is_home_request(): bool { $request_uri = isset($_SERVER[‘REQUEST_URI’]) ? wp_unslash($_SERVER[‘REQUEST_URI’]) : ‘/’; $request_path = wp_parse_url($request_uri, PHP_URL_PATH); $home_path = wp_parse_url(home_url(‘/’), PHP_URL_PATH); $request_path = ‘/’ . ltrim((string) $request_path,…Continue reading
[DO NOT PUSH] Branding Tokens for WP Pages Customisation
add_filter(‘rd_client_brand_tokens’, function ($t) { return array_merge($t, [ // Colours ‘color_primary’ => ‘#231f20’, ‘color_accent’ => ‘#881721’, ‘color_bg’ => ‘#ffffff’, ‘color_bg_alt’ => ‘#881721’, ‘color_text’ => ‘#231f20’, ‘color_link’ => ‘#231f20’, ‘color_link_hover’ => ‘#881721’, // Fonts ‘font_family’ => ‘Roboto, system-ui, -apple-system, “Segoe UI”, Roboto,…Continue reading
Global RD Clients Brand Token Engine for WP Pages Customisations
function rd_client_brand_css_vars_from_tokens(array $tokens): string { $vars = []; foreach ($tokens as $key => $val) { // Convert underscores in PHP keys to hyphens for CSS vars $css_key = str_replace(‘_’, ‘-‘, $key); $vars[] = “–rd-client-{$css_key}: {$val};”; } return implode(”, $vars); }…Continue reading
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() ) { $user = wp_get_current_user(); if ( in_array( ‘subscriber’, (array) $user->roles, true ) ) { if ( ! ( defined( ‘DOING_AJAX’ ) && DOING_AJAX…Continue reading
Dölj admin-baren för prenumeranter
/** * 2) Dölj admin-baren för prenumeranter */ add_filter( ‘show_admin_bar’, function( $show ) { if ( is_user_logged_in() ) { $user = wp_get_current_user(); if ( in_array( ‘subscriber’, (array) $user->roles, true ) ) { return false; } } return $show; });Continue reading