HOLIDAY SAVINGS HAPPENING NOW!

All jerseys: 👕Buy 3 and pay for only 2!Free shipping🎉

Buy 3👕Pay 2🎁

All jerseys: 👕Buy 3 and pay for only 2!🎁

const TAG = 'spz-custom-smart-search-location'; const SMART_PRODUCR_SEARCH_WRAP_CLASSNAME = 'app-smart-product-search-wrap'; const THEME_NAME = window.SHOPLAZZA.theme.merchant_theme_name; const BREAKPOINT = 960; const DELAY = 300; class SpzCustomSmartSearchLocation extends SPZ.BaseElement { constructor(element) { super(element); this.mobileHeaderPluginParentEle = null; } static deferredMount() { return false; } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } buildCallback() { this.init(); this.listenerResize(); } init() { // PC-end not load if (this.isDesktop()) { return; } if (!window.__isLoadAppSmartSearch__) { this.initSmartSearch(); console.log('__isLoadAppSmartSearch__'); } // B-end must reload if (window.self === window.top && !window.__isLoadAppSmartSearch__) { window.__isLoadAppSmartSearch__ = true; } } initSmartSearch() { if (this.hasMobileUpperRightPlugin()) { this.showMobileSmartSearch(); } else { this.addMobileSmartSearch(); } } listenerResize() { window.removeEventListener('resize', window.smartSearchResizeCallback); window.smartSearchResizeCallback = SPZCore.Types.debounce( this.win, () => { this.init(); }, DELAY ); window.addEventListener('resize', window.smartSearchResizeCallback); } isDesktop() { const mediaQueryList = window.matchMedia(`(min-width: ${BREAKPOINT}px)`); return mediaQueryList.matches; } hasMobileUpperRightPlugin() { return !['geek', 'flash', 'boost'].includes(THEME_NAME.toLocaleLowerCase()); } showMobileSmartSearch() { this.mobileHeaderPluginParentEle = this.getMobileHeaderPluginParentEle(); this.setMobileHeaderIconsPluginStyle(this.mobileHeaderPluginParentEle); } getMobileHeaderPluginParentEle() { const MOBILE_HEADER_PLUGIN_PARENT_ELE_MAP = { nova: '.header__mobile #header__plugin-container', hero: '.header__icons .tw-flex.tw-justify-end.tw-items-center.tw-space-x-7', onePage: '.header__mobile #header__plugin-container', wind: '#header-icons .flex.justify-end.items-center', eva: '#header__icons .plugin_content' }; const headerPluginParentSelector = this.combineMultipleSelectors( Object.values(MOBILE_HEADER_PLUGIN_PARENT_ELE_MAP) ); return document.querySelector(headerPluginParentSelector); } setMobileHeaderIconsPluginStyle(pluginParentEle) { if (!pluginParentEle) { return; } const containHidden = pluginParentEle.classList.contains('md:hidden'); const containTwHidden = pluginParentEle.classList.contains('md:tw-hidden'); if (containHidden || containTwHidden) { Array.from(pluginParentEle.children).forEach((pluginElement) => { if (!this.hasSmartSearchPlugin(pluginElement)) { pluginElement.style.display = 'none'; } }); pluginParentEle.classList.remove('md:hidden', 'md:tw-hidden'); } else { const smartSearchPluginElement = Array.from(pluginParentEle.children).find( (pluginElement) => { return this.hasSmartSearchPlugin(pluginElement); } ); smartSearchPluginElement.style.display = 'block'; } } hasSmartSearchPlugin(pluginElement) { return ( pluginElement.classList.contains(`${SMART_PRODUCR_SEARCH_WRAP_CLASSNAME}`) || pluginElement.querySelectorAll(`.${SMART_PRODUCR_SEARCH_WRAP_CLASSNAME}`).length > 0 ); } addMobileSmartSearch() { this.mobileHeaderIconsEle = this.getMobileHeaderIconsEle(); this.smartSearchWrapEle = this.getSmartSearchWrapEle(); this.appendSmartSearchToHeader(); } getMobileHeaderIconsEle() { // Must be the parent element of the plugin const MOBILE_HEADER_ICONS_ELE_MAP = { geek: '#header-mobile-container .flex.items-center.justify-end.flex-shrink-0', flash: '#header-layout .header__icons', boost: '.header__mobile-bottom .tw-flex.tw-items-center.tw-justify-end.tw-flex-1' }; const headerIconsSelector = this.combineMultipleSelectors( Object.values(MOBILE_HEADER_ICONS_ELE_MAP) ); return document.querySelector(headerIconsSelector); } getSmartSearchWrapEle() { const smartSearchWrapEle = document.querySelector(this.getSmartSearchWrapSelector()); if (!smartSearchWrapEle) { return null; } return smartSearchWrapEle; } appendSmartSearchToHeader() { if (!this.smartSearchWrapEle) { return; } this.mobileHeaderIconsEle.insertAdjacentElement('afterbegin', this.smartSearchWrapEle); } getSmartSearchWrapSelector() { const PLUGIN_POSITION = { DRAWER: 'drawer', HEADER_TOP: 'headerTop' }; // only one this plugin of ancestor element const MOBILE_PLUGIN_POSITION_ELE_MAP = { [PLUGIN_POSITION.DRAWER]: { geek: '#header-menu-mobile #menu-drawer', flash: '#menu-drawer .plugin__header-content', boost: '.header__drawer' }, [PLUGIN_POSITION.HEADER_TOP]: { geek: '#header-menu-mobile #menu-drawer', flash: '#menu-drawer .plugin__header-content', boost: '.header-content .logo-wrap' } }; const MbPluginPositionInTheme = [ ...Object.values(MOBILE_PLUGIN_POSITION_ELE_MAP[PLUGIN_POSITION.DRAWER]), ...Object.values(MOBILE_PLUGIN_POSITION_ELE_MAP[PLUGIN_POSITION.HEADER_TOP]) ]; return Object.values(MbPluginPositionInTheme).reduce((pre, ancestor) => { if (pre === '') { return `${ancestor} .app-smart-product-search-wrap`; } if (pre.includes(ancestor)) { return pre; } return `${pre},${ancestor} .app-smart-product-search-wrap`; }, ''); } combineMultipleSelectors(selectorList) { return selectorList.reduce((pre, selector) => { if (pre === '') { return `${selector}`; } if (pre.includes(selector)) { return pre; } return `${pre},${selector}`; }, ''); } } SPZ.defineElement(TAG, SpzCustomSmartSearchLocation);
  • Log in
  • Create an account
  • 🏠️Home
  • 🏀NBA
    • ALL NBA
    • 2024-2025 jersey
    • ATLANTA HAWKS
    • BOSTON CELTICS
    • BROOKLYN NETS
    • CHARLOTTE HORNETS
    • CHICAGO BULLS
    • CLEVELAND CAVALIERS
    • DALLAS MAVERICKS
    • DENVER NUGGETS
    • DETROIT PISTONS
    • GOLDEN STATE WARRIORS
    • HOUSTON ROCKETS
    • INDIANA PACERS
    • LOS ANGELES CLIPPERS
    • LOS ANGELES LAKERS
    • MEMPHIS GRIZZLIES
    • MIAMI HEAT
    • MILWAUKEE BUCKS
    • MINNESOTA TIMBERWOLVES
    • NEW ORLEANS PELICANS
    • NEW YORK KNICKS
    • OKLAHOMA CITY THUNDER
    • ORLANDO MAGIC
    • PHILADELPHIA 76ERS
    • PHOENIX SUNS
    • PORTLAND TRAILBLAZERS
    • SACRAMENTO KINGS
    • SAN ANTONIO SPURS
    • TORONTO RAPTORS
    • WASHINGTON WIZARDS
    • UTAH JAZZ
    • NBA 2023/24’JERSEY
    • 2024 NBA All-Star
    • 2024 Olympics
  • Duke University
  • 🏈NFL
    • ALL NFL
    • Detroit Lions
    • Kansas City Chiefs Women Jersey
    • Philadelphia Eagles
    • Buffalo Bills
    • Tampa Bay Buccaneers
    • Baltimore Ravens
    • Los Angeles Rams
    • Houston Texans
    • Minnesota Vikings
    • Los Angeles Chargers
    • Pittsburgh Steelers
    • Washington Commanders
    • Green Bay Packers
    • Denver Broncos
    • Atlanta Falcons
    • Arizona Cardinals
    • Chicago Bears
    • Cleveland Browns
    • Cincinnati Bengals
    • Carolina Panthers
    • Dallas Cowboys
    • Indianapolis Colts
    • Jacksonville Jaguars
    • Las Vegas Raiders
    • Miami Dolphins
    • New Orleans Saints
    • New york jets
    • New York Giants
    • New England Patriots
    • San Francisco 49ers
    • Seattle Seahawks
    • Tennessee Titans
    Save $117.00 Save $117.00

    Men's Kansas City Chiefs Patrick Mahomes Nike Red Super Bowl LIX Jersey

    from $42.99 $159.99
  • Daily Specials!
  • ⚾️MLB
      ALL MLB New York Yankees ST. LOUIS CARDINALS Los Angeles Dodgers Texas Rangers San Diego Padres Houston Astros Atlanta Braves Boston Red Sox Los Angeles Angels Baltimore Orioles Minnesota Twins Chicago Cubs San Francisco Giants Toronto Blue Jays Cincinnati Reds Tampa Bay Rays Chicago White Sox Oakland Athletics Pittsburgh Pirates Milwaukee Brewers Seattle Mariners Arizona Diamondbacks Philadelphia Phillies New York Mets Kansas City Royals Washington Nationals Miami Marlins Detroit Tigers Cleveland Guardians Colorado Rockies
    Save $47.00 Save $47.00

    Men's Kansas City Royals Aroldis Chapman #54 White Home Replica Player Jersey

    from $42.99 $89.99
  • Windcheater
  • 🔥2024 Olympics
  • 🏒NHL
      ALL NHL NHL Customizable 2024 NHL All-Star Anaheim Ducks Arizona Coyotes Boston Bruins Buffalo Sabres Calgary Flames Carolina Hurricanes Chicago Blackhawks Colorado Avalanche Columbus Blue Jackets Dallas Stars Detroit Red Wings Edmonton Oilers Florida Panthers Los Angeles Kings Minnesota Wild Montreal Canadiens Nashville Predators New Jersey Devils New York Rangers New York Islanders Ottawa Senators Philadelphia Flyers Pittsburgh Penguins San Jose Sharks Seattle Kraken St. Louis Blues Tampa Bay Lightning Toronto Maple Leafs Vancouver Canucks Vegas Golden Knights Washington Capitals Winnipeg Jets
    Save $160.00 Save $160.00

    Alexander Ovechkin Washington Capitals Fanatics Captain Patch Home Breakaway Jersey – Red

    $69.90 $229.90
  • 👟SHOE
  • KIDS
    • KID NBA JERSEY(120-165CM)
    • KID NFL JERSEY(120-165CM)
    • JUNIOR NBA JERSEYS(Age 8-20)
  • 🧢HAT
    • MLB HAT
    • NFL HAT
    • NBA HAT
  • 🩳SHORTS
  • HOODIE
    • NBA HOODIE
    • NFL HOODIE
    • NHL HOODIE
  • Track order
  • Contact Us
    • WhatsApp
    • Email: classic24ml@outlook.com
  • European Cup
    • Real Madrid European Cup Jersey
    • Inter Milan European Cup Jersey
    • Dortmund European Cup Jersey
    • Bayern Munich European Cup Jersey
    • Barcelona European Cup Jersey
    • Paris Saint-Germain European Cup Jersey
    • Aston Villa European Cup Jersey
    • Arsenal European Cup Jersey
  • More links
  • 🏠️Home
  • 🏀NBA
    • ALL NBA
    • 2024-2025 jersey
    • ATLANTA HAWKS
    • BOSTON CELTICS
    • BROOKLYN NETS
    • CHARLOTTE HORNETS
    • CHICAGO BULLS
    • CLEVELAND CAVALIERS
    • DALLAS MAVERICKS
    • DENVER NUGGETS
    • DETROIT PISTONS
    • GOLDEN STATE WARRIORS
    • HOUSTON ROCKETS
    • INDIANA PACERS
    • LOS ANGELES CLIPPERS
    • LOS ANGELES LAKERS
    • MEMPHIS GRIZZLIES
    • MIAMI HEAT
    • MILWAUKEE BUCKS
    • MINNESOTA TIMBERWOLVES
    • NEW ORLEANS PELICANS
    • NEW YORK KNICKS
    • OKLAHOMA CITY THUNDER
    • ORLANDO MAGIC
    • PHILADELPHIA 76ERS
    • PHOENIX SUNS
    • PORTLAND TRAILBLAZERS
    • SACRAMENTO KINGS
    • SAN ANTONIO SPURS
    • TORONTO RAPTORS
    • WASHINGTON WIZARDS
    • UTAH JAZZ
    • NBA 2023/24’JERSEY
    • 2024 NBA All-Star
    • 2024 Olympics
  • Duke University
  • 🏈NFL
    • ALL NFL
    • Detroit Lions
    • Kansas City Chiefs Women Jersey
    • Philadelphia Eagles
    • Buffalo Bills
    • Tampa Bay Buccaneers
    • Baltimore Ravens
    • Los Angeles Rams
    • Houston Texans
    • Minnesota Vikings
    • Los Angeles Chargers
    • Pittsburgh Steelers
    • Washington Commanders
    • Green Bay Packers
    • Denver Broncos
    • Atlanta Falcons
    • Arizona Cardinals
    • Chicago Bears
    • Cleveland Browns
    • Cincinnati Bengals
    • Carolina Panthers
    • Dallas Cowboys
    • Indianapolis Colts
    • Jacksonville Jaguars
    • Las Vegas Raiders
    • Miami Dolphins
    • New Orleans Saints
    • New york jets
    • New York Giants
    • New England Patriots
    • San Francisco 49ers
    • Seattle Seahawks
    • Tennessee Titans
    Save $117.00 Save $117.00

    Men's Kansas City Chiefs Patrick Mahomes Nike Red Super Bowl LIX Jersey

    from $42.99 $159.99
  • Daily Specials!
  • ⚾️MLB
      ALL MLB New York Yankees ST. LOUIS CARDINALS Los Angeles Dodgers Texas Rangers San Diego Padres Houston Astros Atlanta Braves Boston Red Sox Los Angeles Angels Baltimore Orioles Minnesota Twins Chicago Cubs San Francisco Giants Toronto Blue Jays Cincinnati Reds Tampa Bay Rays Chicago White Sox Oakland Athletics Pittsburgh Pirates Milwaukee Brewers Seattle Mariners Arizona Diamondbacks Philadelphia Phillies New York Mets Kansas City Royals Washington Nationals Miami Marlins Detroit Tigers Cleveland Guardians Colorado Rockies
    Save $47.00 Save $47.00

    Men's Kansas City Royals Aroldis Chapman #54 White Home Replica Player Jersey

    from $42.99 $89.99
  • Windcheater
  • 🔥2024 Olympics
  • 🏒NHL
      ALL NHL NHL Customizable 2024 NHL All-Star Anaheim Ducks Arizona Coyotes Boston Bruins Buffalo Sabres Calgary Flames Carolina Hurricanes Chicago Blackhawks Colorado Avalanche Columbus Blue Jackets Dallas Stars Detroit Red Wings Edmonton Oilers Florida Panthers Los Angeles Kings Minnesota Wild Montreal Canadiens Nashville Predators New Jersey Devils New York Rangers New York Islanders Ottawa Senators Philadelphia Flyers Pittsburgh Penguins San Jose Sharks Seattle Kraken St. Louis Blues Tampa Bay Lightning Toronto Maple Leafs Vancouver Canucks Vegas Golden Knights Washington Capitals Winnipeg Jets
    Save $160.00 Save $160.00

    Alexander Ovechkin Washington Capitals Fanatics Captain Patch Home Breakaway Jersey – Red

    $69.90 $229.90
  • 👟SHOE
  • KIDS
    • KID NBA JERSEY(120-165CM)
    • KID NFL JERSEY(120-165CM)
    • JUNIOR NBA JERSEYS(Age 8-20)
  • 🧢HAT
    • MLB HAT
    • NFL HAT
    • NBA HAT
  • 🩳SHORTS
  • HOODIE
    • NBA HOODIE
    • NFL HOODIE
    • NHL HOODIE
  • Track order
  • Contact Us
    • WhatsApp
    • Email: classic24ml@outlook.com
  • European Cup
    • Real Madrid European Cup Jersey
    • Inter Milan European Cup Jersey
    • Dortmund European Cup Jersey
    • Bayern Munich European Cup Jersey
    • Barcelona European Cup Jersey
    • Paris Saint-Germain European Cup Jersey
    • Aston Villa European Cup Jersey
    • Arsenal European Cup Jersey
  • More links
const TAG = 'spz-custom-smart-search-location'; const SMART_PRODUCR_SEARCH_WRAP_CLASSNAME = 'app-smart-product-search-wrap'; const THEME_NAME = window.SHOPLAZZA.theme.merchant_theme_name; const BREAKPOINT = 960; const DELAY = 300; class SpzCustomSmartSearchLocation extends SPZ.BaseElement { constructor(element) { super(element); this.mobileHeaderPluginParentEle = null; } static deferredMount() { return false; } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } buildCallback() { this.init(); this.listenerResize(); } init() { // PC-end not load if (this.isDesktop()) { return; } if (!window.__isLoadAppSmartSearch__) { this.initSmartSearch(); console.log('__isLoadAppSmartSearch__'); } // B-end must reload if (window.self === window.top && !window.__isLoadAppSmartSearch__) { window.__isLoadAppSmartSearch__ = true; } } initSmartSearch() { if (this.hasMobileUpperRightPlugin()) { this.showMobileSmartSearch(); } else { this.addMobileSmartSearch(); } } listenerResize() { window.removeEventListener('resize', window.smartSearchResizeCallback); window.smartSearchResizeCallback = SPZCore.Types.debounce( this.win, () => { this.init(); }, DELAY ); window.addEventListener('resize', window.smartSearchResizeCallback); } isDesktop() { const mediaQueryList = window.matchMedia(`(min-width: ${BREAKPOINT}px)`); return mediaQueryList.matches; } hasMobileUpperRightPlugin() { return !['geek', 'flash', 'boost'].includes(THEME_NAME.toLocaleLowerCase()); } showMobileSmartSearch() { this.mobileHeaderPluginParentEle = this.getMobileHeaderPluginParentEle(); this.setMobileHeaderIconsPluginStyle(this.mobileHeaderPluginParentEle); } getMobileHeaderPluginParentEle() { const MOBILE_HEADER_PLUGIN_PARENT_ELE_MAP = { nova: '.header__mobile #header__plugin-container', hero: '.header__icons .tw-flex.tw-justify-end.tw-items-center.tw-space-x-7', onePage: '.header__mobile #header__plugin-container', wind: '#header-icons .flex.justify-end.items-center', eva: '#header__icons .plugin_content' }; const headerPluginParentSelector = this.combineMultipleSelectors( Object.values(MOBILE_HEADER_PLUGIN_PARENT_ELE_MAP) ); return document.querySelector(headerPluginParentSelector); } setMobileHeaderIconsPluginStyle(pluginParentEle) { if (!pluginParentEle) { return; } const containHidden = pluginParentEle.classList.contains('md:hidden'); const containTwHidden = pluginParentEle.classList.contains('md:tw-hidden'); if (containHidden || containTwHidden) { Array.from(pluginParentEle.children).forEach((pluginElement) => { if (!this.hasSmartSearchPlugin(pluginElement)) { pluginElement.style.display = 'none'; } }); pluginParentEle.classList.remove('md:hidden', 'md:tw-hidden'); } else { const smartSearchPluginElement = Array.from(pluginParentEle.children).find( (pluginElement) => { return this.hasSmartSearchPlugin(pluginElement); } ); smartSearchPluginElement.style.display = 'block'; } } hasSmartSearchPlugin(pluginElement) { return ( pluginElement.classList.contains(`${SMART_PRODUCR_SEARCH_WRAP_CLASSNAME}`) || pluginElement.querySelectorAll(`.${SMART_PRODUCR_SEARCH_WRAP_CLASSNAME}`).length > 0 ); } addMobileSmartSearch() { this.mobileHeaderIconsEle = this.getMobileHeaderIconsEle(); this.smartSearchWrapEle = this.getSmartSearchWrapEle(); this.appendSmartSearchToHeader(); } getMobileHeaderIconsEle() { // Must be the parent element of the plugin const MOBILE_HEADER_ICONS_ELE_MAP = { geek: '#header-mobile-container .flex.items-center.justify-end.flex-shrink-0', flash: '#header-layout .header__icons', boost: '.header__mobile-bottom .tw-flex.tw-items-center.tw-justify-end.tw-flex-1' }; const headerIconsSelector = this.combineMultipleSelectors( Object.values(MOBILE_HEADER_ICONS_ELE_MAP) ); return document.querySelector(headerIconsSelector); } getSmartSearchWrapEle() { const smartSearchWrapEle = document.querySelector(this.getSmartSearchWrapSelector()); if (!smartSearchWrapEle) { return null; } return smartSearchWrapEle; } appendSmartSearchToHeader() { if (!this.smartSearchWrapEle) { return; } this.mobileHeaderIconsEle.insertAdjacentElement('afterbegin', this.smartSearchWrapEle); } getSmartSearchWrapSelector() { const PLUGIN_POSITION = { DRAWER: 'drawer', HEADER_TOP: 'headerTop' }; // only one this plugin of ancestor element const MOBILE_PLUGIN_POSITION_ELE_MAP = { [PLUGIN_POSITION.DRAWER]: { geek: '#header-menu-mobile #menu-drawer', flash: '#menu-drawer .plugin__header-content', boost: '.header__drawer' }, [PLUGIN_POSITION.HEADER_TOP]: { geek: '#header-menu-mobile #menu-drawer', flash: '#menu-drawer .plugin__header-content', boost: '.header-content .logo-wrap' } }; const MbPluginPositionInTheme = [ ...Object.values(MOBILE_PLUGIN_POSITION_ELE_MAP[PLUGIN_POSITION.DRAWER]), ...Object.values(MOBILE_PLUGIN_POSITION_ELE_MAP[PLUGIN_POSITION.HEADER_TOP]) ]; return Object.values(MbPluginPositionInTheme).reduce((pre, ancestor) => { if (pre === '') { return `${ancestor} .app-smart-product-search-wrap`; } if (pre.includes(ancestor)) { return pre; } return `${pre},${ancestor} .app-smart-product-search-wrap`; }, ''); } combineMultipleSelectors(selectorList) { return selectorList.reduce((pre, selector) => { if (pre === '') { return `${selector}`; } if (pre.includes(selector)) { return pre; } return `${pre},${selector}`; }, ''); } } SPZ.defineElement(TAG, SpzCustomSmartSearchLocation);

const TAG = 'spz-custom-smart-search-location'; const SMART_PRODUCR_SEARCH_WRAP_CLASSNAME = 'app-smart-product-search-wrap'; const THEME_NAME = window.SHOPLAZZA.theme.merchant_theme_name; const BREAKPOINT = 960; const DELAY = 300; class SpzCustomSmartSearchLocation extends SPZ.BaseElement { constructor(element) { super(element); this.mobileHeaderPluginParentEle = null; } static deferredMount() { return false; } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } buildCallback() { this.init(); this.listenerResize(); } init() { // PC-end not load if (this.isDesktop()) { return; } if (!window.__isLoadAppSmartSearch__) { this.initSmartSearch(); console.log('__isLoadAppSmartSearch__'); } // B-end must reload if (window.self === window.top && !window.__isLoadAppSmartSearch__) { window.__isLoadAppSmartSearch__ = true; } } initSmartSearch() { if (this.hasMobileUpperRightPlugin()) { this.showMobileSmartSearch(); } else { this.addMobileSmartSearch(); } } listenerResize() { window.removeEventListener('resize', window.smartSearchResizeCallback); window.smartSearchResizeCallback = SPZCore.Types.debounce( this.win, () => { this.init(); }, DELAY ); window.addEventListener('resize', window.smartSearchResizeCallback); } isDesktop() { const mediaQueryList = window.matchMedia(`(min-width: ${BREAKPOINT}px)`); return mediaQueryList.matches; } hasMobileUpperRightPlugin() { return !['geek', 'flash', 'boost'].includes(THEME_NAME.toLocaleLowerCase()); } showMobileSmartSearch() { this.mobileHeaderPluginParentEle = this.getMobileHeaderPluginParentEle(); this.setMobileHeaderIconsPluginStyle(this.mobileHeaderPluginParentEle); } getMobileHeaderPluginParentEle() { const MOBILE_HEADER_PLUGIN_PARENT_ELE_MAP = { nova: '.header__mobile #header__plugin-container', hero: '.header__icons .tw-flex.tw-justify-end.tw-items-center.tw-space-x-7', onePage: '.header__mobile #header__plugin-container', wind: '#header-icons .flex.justify-end.items-center', eva: '#header__icons .plugin_content' }; const headerPluginParentSelector = this.combineMultipleSelectors( Object.values(MOBILE_HEADER_PLUGIN_PARENT_ELE_MAP) ); return document.querySelector(headerPluginParentSelector); } setMobileHeaderIconsPluginStyle(pluginParentEle) { if (!pluginParentEle) { return; } const containHidden = pluginParentEle.classList.contains('md:hidden'); const containTwHidden = pluginParentEle.classList.contains('md:tw-hidden'); if (containHidden || containTwHidden) { Array.from(pluginParentEle.children).forEach((pluginElement) => { if (!this.hasSmartSearchPlugin(pluginElement)) { pluginElement.style.display = 'none'; } }); pluginParentEle.classList.remove('md:hidden', 'md:tw-hidden'); } else { const smartSearchPluginElement = Array.from(pluginParentEle.children).find( (pluginElement) => { return this.hasSmartSearchPlugin(pluginElement); } ); smartSearchPluginElement.style.display = 'block'; } } hasSmartSearchPlugin(pluginElement) { return ( pluginElement.classList.contains(`${SMART_PRODUCR_SEARCH_WRAP_CLASSNAME}`) || pluginElement.querySelectorAll(`.${SMART_PRODUCR_SEARCH_WRAP_CLASSNAME}`).length > 0 ); } addMobileSmartSearch() { this.mobileHeaderIconsEle = this.getMobileHeaderIconsEle(); this.smartSearchWrapEle = this.getSmartSearchWrapEle(); this.appendSmartSearchToHeader(); } getMobileHeaderIconsEle() { // Must be the parent element of the plugin const MOBILE_HEADER_ICONS_ELE_MAP = { geek: '#header-mobile-container .flex.items-center.justify-end.flex-shrink-0', flash: '#header-layout .header__icons', boost: '.header__mobile-bottom .tw-flex.tw-items-center.tw-justify-end.tw-flex-1' }; const headerIconsSelector = this.combineMultipleSelectors( Object.values(MOBILE_HEADER_ICONS_ELE_MAP) ); return document.querySelector(headerIconsSelector); } getSmartSearchWrapEle() { const smartSearchWrapEle = document.querySelector(this.getSmartSearchWrapSelector()); if (!smartSearchWrapEle) { return null; } return smartSearchWrapEle; } appendSmartSearchToHeader() { if (!this.smartSearchWrapEle) { return; } this.mobileHeaderIconsEle.insertAdjacentElement('afterbegin', this.smartSearchWrapEle); } getSmartSearchWrapSelector() { const PLUGIN_POSITION = { DRAWER: 'drawer', HEADER_TOP: 'headerTop' }; // only one this plugin of ancestor element const MOBILE_PLUGIN_POSITION_ELE_MAP = { [PLUGIN_POSITION.DRAWER]: { geek: '#header-menu-mobile #menu-drawer', flash: '#menu-drawer .plugin__header-content', boost: '.header__drawer' }, [PLUGIN_POSITION.HEADER_TOP]: { geek: '#header-menu-mobile #menu-drawer', flash: '#menu-drawer .plugin__header-content', boost: '.header-content .logo-wrap' } }; const MbPluginPositionInTheme = [ ...Object.values(MOBILE_PLUGIN_POSITION_ELE_MAP[PLUGIN_POSITION.DRAWER]), ...Object.values(MOBILE_PLUGIN_POSITION_ELE_MAP[PLUGIN_POSITION.HEADER_TOP]) ]; return Object.values(MbPluginPositionInTheme).reduce((pre, ancestor) => { if (pre === '') { return `${ancestor} .app-smart-product-search-wrap`; } if (pre.includes(ancestor)) { return pre; } return `${pre},${ancestor} .app-smart-product-search-wrap`; }, ''); } combineMultipleSelectors(selectorList) { return selectorList.reduce((pre, selector) => { if (pre === '') { return `${selector}`; } if (pre.includes(selector)) { return pre; } return `${pre},${selector}`; }, ''); } } SPZ.defineElement(TAG, SpzCustomSmartSearchLocation);
  • Log in
  • Create an account
  • 🏠️Home
  • 🏀NBA
    • ALL NBA
    • 2024-2025 jersey
    • ATLANTA HAWKS
    • BOSTON CELTICS
    • BROOKLYN NETS
    • CHARLOTTE HORNETS
    • CHICAGO BULLS
    • CLEVELAND CAVALIERS
    • DALLAS MAVERICKS
    • DENVER NUGGETS
    • DETROIT PISTONS
    • GOLDEN STATE WARRIORS
    • HOUSTON ROCKETS
    • INDIANA PACERS
    • LOS ANGELES CLIPPERS
    • LOS ANGELES LAKERS
    • MEMPHIS GRIZZLIES
    • MIAMI HEAT
    • MILWAUKEE BUCKS
    • MINNESOTA TIMBERWOLVES
    • NEW ORLEANS PELICANS
    • NEW YORK KNICKS
    • OKLAHOMA CITY THUNDER
    • ORLANDO MAGIC
    • PHILADELPHIA 76ERS
    • PHOENIX SUNS
    • PORTLAND TRAILBLAZERS
    • SACRAMENTO KINGS
    • SAN ANTONIO SPURS
    • TORONTO RAPTORS
    • WASHINGTON WIZARDS
    • UTAH JAZZ
    • NBA 2023/24’JERSEY
    • 2024 NBA All-Star
    • 2024 Olympics
  • Duke University
  • 🏈NFL
    • ALL NFL
    • Detroit Lions
    • Kansas City Chiefs
    • Philadelphia Eagles
    • Buffalo Bills
    • Tampa Bay Buccaneers
    • Baltimore Ravens
    • Los Angeles Rams
    • Houston Texans
    • Minnesota Vikings
    • Los Angeles Chargers
    • Pittsburgh Steelers
    • Washington Commanders
    • Green Bay Packers
    • Denver Broncos
    • Atlanta Falcons
    • Arizona Cardinals
    • Chicago Bears
    • Cleveland Browns
    • Cincinnati Bengals
    • Carolina Panthers
    • Dallas Cowboys
    • Indianapolis Colts
    • Jacksonville Jaguars
    • Las Vegas Raiders
    • Miami Dolphins
    • New Orleans Saints
    • New york jets
    • New York Giants
    • New England Patriots
    • San Francisco 49ers
    • Seattle Seahawks
    • Tennessee Titans
  • Daily Specials!
  • ⚾️MLB
    • ALL MLB
    • New York Yankees
    • ST. LOUIS CARDINALS
    • Los Angeles Dodgers
    • Texas Rangers
    • San Diego Padres
    • Houston Astros
    • Atlanta Braves
    • Boston Red Sox
    • Los Angeles Angels
    • Baltimore Orioles
    • Minnesota Twins
    • Chicago Cubs
    • San Francisco Giants
    • Toronto Blue Jays
    • Cincinnati Reds
    • Tampa Bay Rays
    • Chicago White Sox
    • Oakland Athletics
    • Pittsburgh Pirates
    • Milwaukee Brewers
    • Seattle Mariners
    • Arizona Diamondbacks
    • Philadelphia Phillies
    • New York Mets
    • Kansas City Royals
    • Washington Nationals
    • Miami Marlins
    • Detroit Tigers
    • Cleveland Guardians
    • Colorado Rockies
  • Windcheater
  • 🔥2024 Olympics
  • 🏒NHL
    • ALL NHL
    • NHL Customizable
    • 2024 NHL All-Star
    • Anaheim Ducks
    • Arizona Coyotes
    • Boston Bruins
    • Buffalo Sabres
    • Calgary Flames
    • Carolina Hurricanes
    • Chicago Blackhawks
    • Colorado Avalanche
    • Columbus Blue Jackets
    • Dallas Stars
    • Detroit Red Wings
    • Edmonton Oilers
    • Florida Panthers
    • Los Angeles Kings
    • Minnesota Wild
    • Montreal Canadiens
    • Nashville Predators
    • New Jersey Devils
    • New York Rangers
    • New York Islanders
    • Ottawa Senators
    • Philadelphia Flyers
    • Pittsburgh Penguins
    • San Jose Sharks
    • Seattle Kraken
    • St. Louis Blues
    • Tampa Bay Lightning
    • Toronto Maple Leafs
    • Vancouver Canucks
    • Vegas Golden Knights
    • Washington Capitals
    • Winnipeg Jets
  • 👟SHOE
  • KIDS
    • KID NBA JERSEY(120-165CM)
    • KID NFL JERSEY(120-165CM)
    • JUNIOR NBA JERSEYS(Age 8-20)
  • 🧢HAT
    • MLB HAT
    • NFL HAT
    • NBA HAT
  • 🩳SHORTS
  • HOODIE
    • NBA HOODIE
    • NFL HOODIE
    • NHL HOODIE
  • Track order
  • Contact Us
    • WhatsApp
    • Email: classic24ml@outlook.com
  • European Cup
    • Real Madrid European Cup Jersey
    • Inter Milan European Cup Jersey
    • Dortmund European Cup Jersey
    • Bayern Munich European Cup Jersey
    • Barcelona European Cup Jersey
    • Paris Saint-Germain European Cup Jersey
    • Aston Villa European Cup Jersey
    • Arsenal European Cup Jersey
  • 🏠️Home
  • 🏀NBA
    • 🏀NBA
    • ALL NBA
    • 2024-2025 jersey
    • ATLANTA HAWKS
    • BOSTON CELTICS
    • BROOKLYN NETS
    • CHARLOTTE HORNETS
    • CHICAGO BULLS
    • CLEVELAND CAVALIERS
    • DALLAS MAVERICKS
    • DENVER NUGGETS
    • DETROIT PISTONS
    • GOLDEN STATE WARRIORS
    • HOUSTON ROCKETS
    • INDIANA PACERS
    • LOS ANGELES CLIPPERS
    • LOS ANGELES LAKERS
    • MEMPHIS GRIZZLIES
    • MIAMI HEAT
    • MILWAUKEE BUCKS
    • MINNESOTA TIMBERWOLVES
    • NEW ORLEANS PELICANS
    • NEW YORK KNICKS
    • OKLAHOMA CITY THUNDER
    • ORLANDO MAGIC
    • PHILADELPHIA 76ERS
    • PHOENIX SUNS
    • PORTLAND TRAILBLAZERS
    • SACRAMENTO KINGS
    • SAN ANTONIO SPURS
    • TORONTO RAPTORS
    • WASHINGTON WIZARDS
    • UTAH JAZZ
    • NBA 2023/24’JERSEY
    • 2024 NBA All-Star
    • 2024 Olympics
  • Duke University
  • 🏈NFL
    • 🏈NFL
    • ALL NFL
    • Detroit Lions
    • Kansas City Chiefs
      • Kansas City Chiefs
      • Women Jersey
    • Philadelphia Eagles
    • Buffalo Bills
    • Tampa Bay Buccaneers
    • Baltimore Ravens
    • Los Angeles Rams
    • Houston Texans
    • Minnesota Vikings
    • Los Angeles Chargers
    • Pittsburgh Steelers
    • Washington Commanders
    • Green Bay Packers
    • Denver Broncos
    • Atlanta Falcons
    • Arizona Cardinals
    • Chicago Bears
    • Cleveland Browns
    • Cincinnati Bengals
    • Carolina Panthers
    • Dallas Cowboys
    • Indianapolis Colts
    • Jacksonville Jaguars
    • Las Vegas Raiders
    • Miami Dolphins
    • New Orleans Saints
    • New york jets
    • New York Giants
    • New England Patriots
    • San Francisco 49ers
    • Seattle Seahawks
    • Tennessee Titans
  • Daily Specials!
  • ⚾️MLB
    • ⚾️MLB
    • ALL MLB
    • New York Yankees
    • ST. LOUIS CARDINALS
    • Los Angeles Dodgers
    • Texas Rangers
    • San Diego Padres
    • Houston Astros
    • Atlanta Braves
    • Boston Red Sox
    • Los Angeles Angels
    • Baltimore Orioles
    • Minnesota Twins
    • Chicago Cubs
    • San Francisco Giants
    • Toronto Blue Jays
    • Cincinnati Reds
    • Tampa Bay Rays
    • Chicago White Sox
    • Oakland Athletics
    • Pittsburgh Pirates
    • Milwaukee Brewers
    • Seattle Mariners
    • Arizona Diamondbacks
    • Philadelphia Phillies
    • New York Mets
    • Kansas City Royals
    • Washington Nationals
    • Miami Marlins
    • Detroit Tigers
    • Cleveland Guardians
    • Colorado Rockies
  • Windcheater
  • 🔥2024 Olympics
  • 🏒NHL
    • 🏒NHL
    • ALL NHL
    • NHL Customizable
    • 2024 NHL All-Star
    • Anaheim Ducks
    • Arizona Coyotes
    • Boston Bruins
    • Buffalo Sabres
    • Calgary Flames
    • Carolina Hurricanes
    • Chicago Blackhawks
    • Colorado Avalanche
    • Columbus Blue Jackets
    • Dallas Stars
    • Detroit Red Wings
    • Edmonton Oilers
    • Florida Panthers
    • Los Angeles Kings
    • Minnesota Wild
    • Montreal Canadiens
    • Nashville Predators
    • New Jersey Devils
    • New York Rangers
    • New York Islanders
    • Ottawa Senators
    • Philadelphia Flyers
    • Pittsburgh Penguins
    • San Jose Sharks
    • Seattle Kraken
    • St. Louis Blues
    • Tampa Bay Lightning
    • Toronto Maple Leafs
    • Vancouver Canucks
    • Vegas Golden Knights
    • Washington Capitals
    • Winnipeg Jets
  • 👟SHOE
  • KIDS
    • KIDS
    • KID NBA JERSEY(120-165CM)
    • KID NFL JERSEY(120-165CM)
    • JUNIOR NBA JERSEYS(Age 8-20)
  • 🧢HAT
    • 🧢HAT
    • MLB HAT
    • NFL HAT
    • NBA HAT
  • 🩳SHORTS
  • HOODIE
    • HOODIE
    • NBA HOODIE
    • NFL HOODIE
    • NHL HOODIE
  • Track order
  • Contact Us
    • Contact Us
    • WhatsApp
    • Email: classic24ml@outlook.com
  • European Cup
    • European Cup
    • Real Madrid European Cup Jersey
    • Inter Milan European Cup Jersey
    • Dortmund European Cup Jersey
    • Bayern Munich European Cup Jersey
    • Barcelona European Cup Jersey
    • Paris Saint-Germain European Cup Jersey
    • Aston Villa European Cup Jersey
    • Arsenal European Cup Jersey
  • const TAG = 'spz-custom-smart-search-location'; const SMART_PRODUCR_SEARCH_WRAP_CLASSNAME = 'app-smart-product-search-wrap'; const THEME_NAME = window.SHOPLAZZA.theme.merchant_theme_name; const BREAKPOINT = 960; const DELAY = 300; class SpzCustomSmartSearchLocation extends SPZ.BaseElement { constructor(element) { super(element); this.mobileHeaderPluginParentEle = null; } static deferredMount() { return false; } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } buildCallback() { this.init(); this.listenerResize(); } init() { // PC-end not load if (this.isDesktop()) { return; } if (!window.__isLoadAppSmartSearch__) { this.initSmartSearch(); console.log('__isLoadAppSmartSearch__'); } // B-end must reload if (window.self === window.top && !window.__isLoadAppSmartSearch__) { window.__isLoadAppSmartSearch__ = true; } } initSmartSearch() { if (this.hasMobileUpperRightPlugin()) { this.showMobileSmartSearch(); } else { this.addMobileSmartSearch(); } } listenerResize() { window.removeEventListener('resize', window.smartSearchResizeCallback); window.smartSearchResizeCallback = SPZCore.Types.debounce( this.win, () => { this.init(); }, DELAY ); window.addEventListener('resize', window.smartSearchResizeCallback); } isDesktop() { const mediaQueryList = window.matchMedia(`(min-width: ${BREAKPOINT}px)`); return mediaQueryList.matches; } hasMobileUpperRightPlugin() { return !['geek', 'flash', 'boost'].includes(THEME_NAME.toLocaleLowerCase()); } showMobileSmartSearch() { this.mobileHeaderPluginParentEle = this.getMobileHeaderPluginParentEle(); this.setMobileHeaderIconsPluginStyle(this.mobileHeaderPluginParentEle); } getMobileHeaderPluginParentEle() { const MOBILE_HEADER_PLUGIN_PARENT_ELE_MAP = { nova: '.header__mobile #header__plugin-container', hero: '.header__icons .tw-flex.tw-justify-end.tw-items-center.tw-space-x-7', onePage: '.header__mobile #header__plugin-container', wind: '#header-icons .flex.justify-end.items-center', eva: '#header__icons .plugin_content' }; const headerPluginParentSelector = this.combineMultipleSelectors( Object.values(MOBILE_HEADER_PLUGIN_PARENT_ELE_MAP) ); return document.querySelector(headerPluginParentSelector); } setMobileHeaderIconsPluginStyle(pluginParentEle) { if (!pluginParentEle) { return; } const containHidden = pluginParentEle.classList.contains('md:hidden'); const containTwHidden = pluginParentEle.classList.contains('md:tw-hidden'); if (containHidden || containTwHidden) { Array.from(pluginParentEle.children).forEach((pluginElement) => { if (!this.hasSmartSearchPlugin(pluginElement)) { pluginElement.style.display = 'none'; } }); pluginParentEle.classList.remove('md:hidden', 'md:tw-hidden'); } else { const smartSearchPluginElement = Array.from(pluginParentEle.children).find( (pluginElement) => { return this.hasSmartSearchPlugin(pluginElement); } ); smartSearchPluginElement.style.display = 'block'; } } hasSmartSearchPlugin(pluginElement) { return ( pluginElement.classList.contains(`${SMART_PRODUCR_SEARCH_WRAP_CLASSNAME}`) || pluginElement.querySelectorAll(`.${SMART_PRODUCR_SEARCH_WRAP_CLASSNAME}`).length > 0 ); } addMobileSmartSearch() { this.mobileHeaderIconsEle = this.getMobileHeaderIconsEle(); this.smartSearchWrapEle = this.getSmartSearchWrapEle(); this.appendSmartSearchToHeader(); } getMobileHeaderIconsEle() { // Must be the parent element of the plugin const MOBILE_HEADER_ICONS_ELE_MAP = { geek: '#header-mobile-container .flex.items-center.justify-end.flex-shrink-0', flash: '#header-layout .header__icons', boost: '.header__mobile-bottom .tw-flex.tw-items-center.tw-justify-end.tw-flex-1' }; const headerIconsSelector = this.combineMultipleSelectors( Object.values(MOBILE_HEADER_ICONS_ELE_MAP) ); return document.querySelector(headerIconsSelector); } getSmartSearchWrapEle() { const smartSearchWrapEle = document.querySelector(this.getSmartSearchWrapSelector()); if (!smartSearchWrapEle) { return null; } return smartSearchWrapEle; } appendSmartSearchToHeader() { if (!this.smartSearchWrapEle) { return; } this.mobileHeaderIconsEle.insertAdjacentElement('afterbegin', this.smartSearchWrapEle); } getSmartSearchWrapSelector() { const PLUGIN_POSITION = { DRAWER: 'drawer', HEADER_TOP: 'headerTop' }; // only one this plugin of ancestor element const MOBILE_PLUGIN_POSITION_ELE_MAP = { [PLUGIN_POSITION.DRAWER]: { geek: '#header-menu-mobile #menu-drawer', flash: '#menu-drawer .plugin__header-content', boost: '.header__drawer' }, [PLUGIN_POSITION.HEADER_TOP]: { geek: '#header-menu-mobile #menu-drawer', flash: '#menu-drawer .plugin__header-content', boost: '.header-content .logo-wrap' } }; const MbPluginPositionInTheme = [ ...Object.values(MOBILE_PLUGIN_POSITION_ELE_MAP[PLUGIN_POSITION.DRAWER]), ...Object.values(MOBILE_PLUGIN_POSITION_ELE_MAP[PLUGIN_POSITION.HEADER_TOP]) ]; return Object.values(MbPluginPositionInTheme).reduce((pre, ancestor) => { if (pre === '') { return `${ancestor} .app-smart-product-search-wrap`; } if (pre.includes(ancestor)) { return pre; } return `${pre},${ancestor} .app-smart-product-search-wrap`; }, ''); } combineMultipleSelectors(selectorList) { return selectorList.reduce((pre, selector) => { if (pre === '') { return `${selector}`; } if (pre.includes(selector)) { return pre; } return `${pre},${selector}`; }, ''); } } SPZ.defineElement(TAG, SpzCustomSmartSearchLocation);
Log in
(function(){ let w = window.innerWidth; function setHeaderCssVar() { const headerEle = document.getElementById('shoplaza-section-header'); if(!headerEle){ return }; document.body.style.setProperty('--window-height', `${window.innerHeight}px`); document.body.style.setProperty('--header-height', `${headerEle.clientHeight}px`); const mdScorllHideEle = headerEle.querySelector('.header__mobile .header__scroll_hide'); if (mdScorllHideEle) { document.body.style.setProperty('--header-scroll-hide-height-md', `${mdScorllHideEle.clientHeight}px`); } const pcScorllHideEle = headerEle.querySelector('.header__desktop .header__scroll_hide'); if (pcScorllHideEle) { document.body.style.setProperty('--header-scroll-hide-height-pc', `${pcScorllHideEle.clientHeight}px`); } } function handlResize() { if(w == window.innerWidth){return}; w = window.innerWidth; setHeaderCssVar(); }; function init(){ setHeaderCssVar(); window.removeEventListener('resize', window._theme_header_listener) window._theme_header_listener = handlResize; window.addEventListener('resize', window._theme_header_listener); } init(); })();
Please enter a valid email address.
Please enter your email address.
Thanks for subscribing

COMPANY

  • ABOUT US
  • CONTACT US
  • FAQS
  • SIZE CHART

COMPANY

  • ABOUT US
  • CONTACT US
  • FAQS
  • SIZE CHART

PRIVACY

  • PRIVACY POLICY
  • TERMS OF SERVICE
  • DELIVER & SHIPPING
  • RETURN & REFUND POLICY
  • INTERLECTUAL PROPERTY RIGHTES

PRIVACY

  • PRIVACY POLICY
  • TERMS OF SERVICE
  • DELIVER & SHIPPING
  • RETURN & REFUND POLICY
  • INTERLECTUAL PROPERTY RIGHTES
  • WhatsApp Contact Me
  • ✈️:We Mainly use USPS or DHL, Epack carriers.

    US :9-12 working days

    Germany :12-15 working days

    Australia: 10-15 working days

  • WhatsApp Contact Me
  • ✈️:We Mainly use USPS or DHL, Epack carriers.

    US :9-12 working days

    Germany :12-15 working days

    Australia: 10-15 working days

  • American Express
  • Apple Pay
  • Mastercard
  • PayPal
  • Visa
  • American Express
  • Apple Pay
  • Mastercard
  • PayPal
  • Visa
© 2025 Sports Competition Store
View Cart