OK Collects Card Show

OK Collects is built for collectors who love the hobby and enjoy the experience that comes with it. Backed by the team behind TX Card Shows—one of the largest and most trusted card show series in the country—we’re bringing that same energy, scale, and community focus to Oklahoma.

More Information

  • 00

    days

  • 00

    hours

  • 00

    minutes

  • 00

    seconds

Date
Sep 12 - 13 2026
Time
8:00 am - 6:00 pm
/** * Elementor Accordion Anchor Fix * Fixes anchor links (#anchor-id) that point to content hidden inside * a collapsed Elementor Accordion tab. Opens the correct accordion item * and scrolls to it smoothly. */ add_action( 'wp_footer', function () { ?> ( () => { const lazyloadRunObserver = () => { const lazyloadBackgrounds = document.querySelectorAll( `.e-con.e-parent:not(.e-lazyloaded)` ); const lazyloadBackgroundObserver = new IntersectionObserver( ( entries ) => { entries.forEach( ( entry ) => { if ( entry.isIntersecting ) { let lazyloadBackground = entry.target; if( lazyloadBackground ) { lazyloadBackground.classList.add( 'e-lazyloaded' ); } lazyloadBackgroundObserver.unobserve( entry.target ); } }); }, { rootMargin: '200px 0px 200px 0px' } ); lazyloadBackgrounds.forEach( ( lazyloadBackground ) => { lazyloadBackgroundObserver.observe( lazyloadBackground ); } ); }; const events = [ 'DOMContentLoaded', 'elementor/lazyload/observe', ]; events.forEach( ( event ) => { document.addEventListener( event, lazyloadRunObserver ); } ); } )();