add_filter(‘get_avatar’, function($avatar_html, $id_or_email, $size) { // Force width/height attributes to match the requested avatar size $size = intval($size) ?: 26; // Remove existing width/height to avoid duplicates $avatar_html = preg_replace(‘/\s(width|height)=”\d+”/i’, ”, $avatar_html); // Add explicit width/height $avatar_html = preg_replace( ‘/]+)>/’,…Continue reading
add_filter(‘get_custom_logo’, function($html) { // Only touch the header logo return preg_replace( ‘/]+)>/’, ‘‘, // set to your display size $html, 1 ); });Continue reading
add_filter(‘get_custom_logo’, function($html) { // Only touch the header logo return preg_replace( ‘/]+)>/’, ‘‘, // set to your display size $html, 1 ); });Continue reading
… document.addEventListener(“DOMContentLoaded”, () => { // Customize this to match your sticky header (or set to null if not needed) const HEADER_SELECTOR = “#site-header”; const getHeaderOffset = () => { const header = HEADER_SELECTOR && document.querySelector(HEADER_SELECTOR); return header ? header.getBoundingClientRect().height…Continue reading
/** * LifterLMS Content Sync Engine – Comprehensive Data Version * Syncs courses and lessons with ALL related content * WPCode Snippet – Run Everywhere – Priority 20 */ defined( ‘ABSPATH’ ) || exit; // Add manual sync button in…Continue reading
/** * LifterLMS Text Replacement Snippet – VERIFIED VERSION * Changes “Courses” to “Modules” and “Lessons” to “Steps” * Add to WP Code Snippets or functions.php * Run everywhere (Frontend & Admin) * * Based on official LifterLMS documentation and…Continue reading
/** * LifterLMS Text Replacement Snippet – VERIFIED VERSION * Changes “Courses” to “Modules” and “Lessons” to “Steps” * Add to WP Code Snippets or functions.php * Run everywhere (Frontend & Admin) * * Based on official LifterLMS documentation and…Continue reading
/** * WPCode Snippet: Gravity Forms & Feeds Sync Engine * Description: Manual sync functionality for forms and their feeds * Location: Run Everywhere * Priority: 20 */ defined( ‘ABSPATH’ ) || exit; // Add a manual test button in…Continue reading
.glass-shard { /* Glass effect */ background: rgba(255, 255, 255, 0.18); backdrop-filter: blur(9.8px); -webkit-backdrop-filter: blur(9.8px); box-shadow: 0 1px 10px rgba(0, 0, 0, 0.5); z-index:99; border-radius: 11px; z-index:98; } .glass-shard:hover { transform: translateY(-6px); /* lifts up slightly */ box-shadow: 0 2px…Continue reading