See all offers
  • Buy $150 more and save $15, Buy $250 more and save $20, Buy $350 more and save $40! Buy $150 more and save $15, Buy $250 more and save $20, Buy $350 more and save $40!
Buy $150 more and save $15, Buy $250 more and save $20, Buy $350 more and save $40!
Buy $150 more and save $15, Buy $250 more and save $20, Buy $350 more and save $40!

FSJ Shoes

  • Home
  • All Shoes
    Shop By Category
    • Heels
    • Pumps
    • Sandals
    • Flats
    • Boots
    • Mules & Slides
    • Mary Jane Shoes
    • Loafers
    • Oxfords
    • Espadrilles
    Shop By Style
    • Wedding Shoes
    • Ballerina Shoes
    • Vintage Shoes
    • Glitter Shoes
    • Clear Shoes
    • Metallic Shoes
    • Pearl Shoes
  • Heels
    Shop by Category
    • Mary Jane Heels
    • Slingback Heels
    • Mule Heels
    • Ankle Strap Heels
    • T-Strap Heels
    • Bow Heels
    • Sexy Heels
    • Sparkly Heels
    Heel Height
    • 3 Inch Heels
    • 4 Inch Heels
    • 5 Inch Heels
    • 6 Inch Heels
    Heel Type
    • Stiletto Heels
    • Chunky Heels
    • Platform Heels
    • Wedge Heels
    • Block Heels
    • Kitten Heels
    • Flared Heels
    • Sculptural Heels
    • Cone Heels
    Shop By Color
    • Blue Heels
    • Black Heels
    • White Heels
    • Red Heels
    • Gold Heels
    • Silver Heels
    • Pink Heels
    • Green Heels
    • Clear Heels
  • Boots
    Shaft Height
    • Ankle Boots and Booties
    • Mid Calf Boots
    • Knee High Boots
    • Over-The-Knee Boots
    • Thigh High Boots
    Heel Type
    • High Heel Boots
    • Chunky Heel Boots
    • Platform Boots
    • Wedge Boots
    • Kitten Heel Boots
    • Flat Boots
    Featured
    • Winter Boots
    • Metallic Boots
    • Slouch Boots
    • Cowgirl Boots
    • Lace Up Boots
    • Dress Boots
    • Rhinestone Boots
    Shop By Style
    • Bold Fashion Boots
    • Chelsea Boots
    • Fur Boots
    • Stretch Boots
    • Sock Boots
    • Glitter Boots
    • Peep Toe Booties
    • Square Toe Boots
    • Summer Boots
    • Fall Boots
  • New Arrivals
  • Best Sellers Hot
  • Flats
    • Casual Flats
    • Loafer Flats
    • Mule Flats
    • Ballet Flats
  • Sandals
    Featured
    • Strappy Sandals
    • Rhinestone Sandals
    • Slide Sandals
    • Wedge Sandals
    • Flat Sandals
    Shop By Style
    • Gladiator Sandals
    • Thong Sandals
    • Platform Sandals
    • Dress Sandals
    • Denim Sandals
  • Cowboy Boots
  • Sale
  • 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);
    Sign in Create an account

    FSJ Shoes

    • Home
    • All Shoes
      All Shoes
      • Shop By Category
        Shop By Category
        • Heels
        • Pumps
        • Sandals
        • Flats
        • Boots
        • Mules & Slides
        • Mary Jane Shoes
        • Loafers
        • Oxfords
        • Espadrilles
      • Shop By Style
        Shop By Style
        • Wedding Shoes
        • Ballerina Shoes
        • Vintage Shoes
        • Glitter Shoes
        • Clear Shoes
        • Metallic Shoes
        • Pearl Shoes
    • Heels
      Heels
      • Shop by Category
        Shop by Category
        • Mary Jane Heels
        • Slingback Heels
        • Mule Heels
        • Ankle Strap Heels
        • T-Strap Heels
        • Bow Heels
        • Sexy Heels
        • Sparkly Heels
      • Heel Height
        Heel Height
        • 3 Inch Heels
        • 4 Inch Heels
        • 5 Inch Heels
        • 6 Inch Heels
      • Heel Type
        Heel Type
        • Stiletto Heels
        • Chunky Heels
        • Platform Heels
        • Wedge Heels
        • Block Heels
        • Kitten Heels
        • Flared Heels
        • Sculptural Heels
        • Cone Heels
      • Shop By Color
        Shop By Color
        • Blue Heels
        • Black Heels
        • White Heels
        • Red Heels
        • Gold Heels
        • Silver Heels
        • Pink Heels
        • Green Heels
        • Clear Heels
    • Boots
      Boots
      • Shaft Height
        Shaft Height
        • Ankle Boots and Booties
        • Mid Calf Boots
        • Knee High Boots
        • Over-The-Knee Boots
        • Thigh High Boots
      • Heel Type
        Heel Type
        • High Heel Boots
        • Chunky Heel Boots
        • Platform Boots
        • Wedge Boots
        • Kitten Heel Boots
        • Flat Boots
      • Featured
        Featured
        • Winter Boots
        • Metallic Boots
        • Slouch Boots
        • Cowgirl Boots
        • Lace Up Boots
        • Dress Boots
        • Rhinestone Boots
      • Shop By Style
        Shop By Style
        • Bold Fashion Boots
        • Chelsea Boots
        • Fur Boots
        • Stretch Boots
        • Sock Boots
        • Glitter Boots
        • Peep Toe Booties
        • Square Toe Boots
        • Summer Boots
        • Fall Boots
    • New Arrivals
    • Best Sellers Hot
    • Flats
      Flats
      • Casual Flats
      • Loafer Flats
      • Mule Flats
      • Ballet Flats
    • Sandals
      Sandals
      • Featured
        Featured
        • Strappy Sandals
        • Rhinestone Sandals
        • Slide Sandals
        • Wedge Sandals
        • Flat Sandals
      • Shop By Style
        Shop By Style
        • Gladiator Sandals
        • Thong Sandals
        • Platform Sandals
        • Dress Sandals
        • Denim Sandals
    • Cowboy Boots
    • Sale
    • 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
    Home / My account

    Login

    Please enter email and password.
    Email is required. Enter a valid email address
    Password is required. Password must be between 6-16 characters long.
    Forgot password?
    Don't have an account? Create one
    Login for more discounts
    CONTACT
    Customer Service
    support@fsjshoes.com
    Looking for collaboration?
    business@fsjshoes.com

    Working Days/Hours

    Mon - Fri / 10:00AM - 6:00PM GTM+8

    Info
    About Us Contact Us Affiliate Program Payment Policy Privacy Policy Terms & Conditions Intellectual Property Right
    Customer Care
    Help Center FAQ Tracking Order Shipping Policy Return and Exchange Size Guide
    NEWLETTER
    Sign up for emails and enjoy 10% off on your first order! Plus, you’ll receive early access to New Arrivals, Sales, Events + more.
    Please fill in this field
    Please enter a valid email address
    Thanks for subscribing
    CONTACT
    Customer Service
    support@fsjshoes.com
    Looking for collaboration?
    business@fsjshoes.com

    Working Days/Hours

    Mon - Fri / 10:00AM - 6:00PM GTM+8

    Info
    About Us Contact Us Affiliate Program Payment Policy Privacy Policy Terms & Conditions Intellectual Property Right
    Customer Care
    Help Center FAQ Tracking Order Shipping Policy Return and Exchange Size Guide
    NEWLETTER
    Sign up for emails and enjoy 10% off on your first order! Plus, you’ll receive early access to New Arrivals, Sales, Events + more.
    Please fill in this field
    Please enter a valid email address
    Thanks for subscribing
    © 2025 FSJ Shoes All Rights Reserved.

    10% off your first order1

    Thank you for your subscription, you can enjoy a 10% discount for the first purchase.
    Enter a discount code
    class SpzCustomAtc extends SPZ.BaseElement { constructor(element) { super(element); } buildCallback() { this.setupAction_(); } mountCallback() { } setupAction_() { this.registerAction('removeBtnStyle',(invocation) => { this.removeBtnStyle(invocation) }); } isLayoutSupported(layout) { return layout == SPZCore.Layout.CONTAINER; } removeBtnStyle(invocation){ console.log(invocation.args.selectedOptions); document.getElementById('clear-btn-1').click(); document.querySelectorAll('.quick-shop-option-item-init')?.forEach(dom => { dom.classList.remove('quick-shop-option-item-init') }) } } SPZ.defineElement('spz-custom-atc', SpzCustomAtc);

    Cart

    Your shopping cart is empty
    Continue shopping