Backup shortcode for per account Rally Registration list. Placed on My Profile page
[fw-rally-registrations timeframe=”all”]Continue reading
Join 2,000,000+ Professionals who use WPCode to Future-Proof Their Websites!
[fw-rally-registrations timeframe=”all”]Continue reading
// These snippets together lookup the user’s FW exp date and put it on the page. You must have the Ajax PHP snippet enabled in WP Code as well. //put on page where you want the Expiration Date to appear.Continue reading
/* Clean, minimal footer navigation */ .footerpageslinks { display: flex; justify-content: center; align-items: center; gap: .2rem; /* space between items */ list-style: none; margin: 0; padding: 0; font-family: var(–global-body-font, “Inter”, sans-serif); font-size: 12px; letter-spacing: 0.3px; margin-top:10px; } .footerpageslinks li {…Continue reading
jQuery(document).ready(function($) { $(‘#input_1_26’).on(‘mousedown’, function(e) { e.preventDefault(); this.blur(); }); }); jQuery(document).ready(function($) { $(‘#input_1_36’).on(‘mousedown’, function(e) { e.preventDefault(); this.blur(); }); }); jQuery(document).ready(function($) { $(‘#input_1_37’).on(‘mousedown’, function(e) { e.preventDefault(); this.blur(); }); });Continue reading
html { margin-top: 0 !important; } #wpadminbar { translate: 0 -100%; } #wpadminbar:before { content: “”; position: absolute; inset: 0; translate: 0 100%; } #wpadminbar, #wpadminbar:before { transition: 0.5s 0.5s cubic-bezier(0.19, 1, 0.22, 1); } #wpadminbar:hover, #wpadminbar:hover:before { translate: 0…Continue reading
/* ================================ CATEGORY DISTRIBUTOR UNIFIED THEME ================================ */ .cd-theme { max-width: 100%; margin: 0; } /* ———- Section Headings ———- */ .cd-theme .section-heading { font-size: 24px; font-weight: 700; margin: 40px 0 20px; color: #000; border-bottom: 3px solid #000; padding-bottom: 10px;…Continue reading
/* ===================================================== WCV Vendors Login Form – Custom Styling This CSS snippet customizes the vendor registration form to improve layout, typography, colors, and button style ===================================================== */ /* Customise vendor login fields */ form#wcv-login-form .wcv-field-wrapper>input { width: 60%; height: 48px;…Continue reading
(function(){ const header = document.querySelector(‘.site-header’); function setSolidByScroll(){ if(!header) return; if(window.scrollY > 50){ header.classList.add(‘he-solid’); } else { header.classList.remove(‘he-solid’); } } window.addEventListener(‘scroll’, setSolidByScroll, {passive:true}); document.addEventListener(‘DOMContentLoaded’, setSolidByScroll); if(header){ header.addEventListener(‘mouseenter’, ()=> header.classList.add(‘he-solid’)); header.addEventListener(‘mouseleave’, ()=> setSolidByScroll()); } })();Continue reading