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
h1{text-transform: none!important;} h2{text-transform: none!important;} h3{text-transform: none!important;} .ultp-block-title a{text-transform: none!important;} .site-branding .site-title { font-style: normal!important; font-weight: 500!important; font-size: 3.494rem!important; line-height: 1.2!important; letter-spacing: -0.029em!important; font-family: ‘Playfair Display’, serif!important; color: #000000!important; } /* All Mobile Sizes (devices and browser) */ @media only screen…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