You are currently shopping anonymously. Either log in or save your wishlist items by entering your email address.
Login to Share Wishlist
Continue as Guest
{% assign tag_count = 0 %}
{% assign tag_avail_count = 1 %}
{% for promo in promoMessaging %}
{% if product.tags contains promo.tag %}
{% assign tag_count = tag_count | plus: 1 %}
{% endif %}
{% endfor %}
{% for promo in promoMessaging %}
{% if product.tags contains promo.tag %}
{{ promo.collection_badge }}{% if tag_count > 1 and tag_avail_count != tag_count %} /{% endif %}
{% if promo.info_text != blank %}
{% else %}
{% assign discount_amount = variant.price | divided_by: variant.compare_at_price | times: -100 | plus: 100 | round %}
{% assign discount_threshold = 10 %}
{% if variant.available %}
{{variant.price | money}}
{% if variant.price != variant.compare_at_price and variant.compare_at_price > 0 %}
{{variant.compare_at_price | money}}
-{{ discount_amount }}%
{% endif %}
{% else %}
{{variant.price | money}}
{% if variant.price != variant.compare_at_price and variant.compare_at_price > 0 %}
{{variant.compare_at_price | money}}
{% endif %}
{% endif %}
{% endif %}
{% assign shop_name = 'K-Swiss US' %}
{% assign strip_from_swatches = 'Mens,Womens,Big Kids,Little Kids,Toddlers' | split:',' %}
{% assign childrenSizes = 'true' %}
{% assign halfm_tag1 = '' %}
{% assign halfm_tag2 = '' %}
{% assign halfm_1 = 'Message 1' %}
{% assign halfm_2 = 'Message 2' %}
{% for option in product.options_with_values %}
{% assign optionIndex = forloop.index0 %}
{% assign position = forloop.index %}
{% if childrenSizes == "true" and shop_name contains "K-Swiss US" %}
{% if product.tags contains "INFANTS" %}
{{ variant.options[optionIndex] }}C
{% elsif product.tags contains "CHILDREN" %}
{% assign original_string = variant.options[optionIndex] %}
{% assign numbers_only = "" %}
{% assign characters = original_string | split: "" %}
{% for char in characters %}
{% if char contains "0" or char contains "1" or char contains "2" or char contains "3" or char contains "4" or char contains "5" or char contains "6" or char contains "7" or char contains "8" or char contains "9" or char contains "." %}
{% assign numbers_only = numbers_only | append: char %}
{% endif %}
{% endfor %}
{% if numbers_only <= 3 %}
{{ variant.options[optionIndex] }} Y
{% else %}
{{ variant.options[optionIndex] }}C
{% endif %}
{% elsif product.tags contains "VARSITY" %}
{{ variant.options[optionIndex] }} {% unless variant.options[optionIndex] contains "SZ" %}Y {% endunless %}
{% else %}
{{ variant.options[optionIndex] }}
{% endif %}
{% else %}
{{ variant.options[optionIndex] }}
{% endif %}
{% assign numbers_only = "" %}
{% endif %}
{% if option.name == 'Size' %}
if option.name contains 'Length'
or option.name contains 'Width'
or option.name contains 'Height'
or option.name contains 'Depth'
or option.name contains 'Thickness'
or option.name contains 'Weight'
{% assign sortedvalues = option.values | sort %}
{% endif %}
{% for value in sortedvalues %}
{% assign inventory_quantity = 0 %}
{% assign available = false %}
{% assign optionVariant = false %}
{% if product.options_with_values.size == 3 and optionIndex == 2%}
{% for v in product.variants %}
{% unless v.bogus %}
{% if v.option1 == variant.option1 and v.option2 == variant.option2 and v.option3 == value %}
{% assign optionVariant = v %}
{% assign inventory_quantity = inventory_quantity | plus: v.inventory_quantity %}
{% if v.available %}{% assign available = true %}{% endif %}
{% endif %}
{% endunless %}
{% endfor %}
{% elsif product.options_with_values.size == 2 and optionIndex == 1%}
{% for v in product.variants %}
{% unless v.bogus %}
{% if v.option1 == variant.option1 and v.option2 == value %}
{% assign optionVariant = v %}
{% assign inventory_quantity = inventory_quantity | plus: v.inventory_quantity %}
{% if v.available %}{% assign available = true %}{% endif %}
{% endif %}
{% endunless %}
{% endfor %}
{% else %}
{% for v in product.variants %}
{% unless v.bogus %}
{% if v.option1 == value %}
{% assign optionVariant = v %}
{% assign inventory_quantity = inventory_quantity | plus: v.inventory_quantity %}
{% if v.available %}{% assign available = true %}{% endif %}
{% endif %}
{% endunless %}
{% endfor %}
{% endif %}
{% assign checked = "" %}
{% if variant.options[optionIndex] == value and product.userSelectedVariant != false %}{% assign checked = "checked" %}{% endif %}
{% assign option_image = false%}
{% if option.name contains 'color' or option.name contains 'Color' %}
{% for v in product.variants %}
{% if v.option1 == value %}
{% assign option_image = v.images[0].src %}
{% break %}
{% endif %}
{% endfor %}
{% endif %}
{% if option.name contains 'color' or option.name contains 'colour' or option.name contains 'Colour' or option.name contains 'Color' %}
{% unless option_image %}
{%- comment -%}
{%- endcomment -%}
{% endunless %}
{% else %}
{% if value == 'X Small' or value == 'x small' or value == 'X-Small' %}
{% elsif value == 'Small' or value == 'small' %}
{% elsif value == 'Medium' or value == 'medium' %}
{% elsif value == 'Large' or value == 'large' %}
{% elsif value == 'X Large' or value == 'x large' or value == 'X-Large' %}
{% elsif value == '2X Large' or value == '2x large' %}
{% else %}
{% assign v = value %}
{% for strip in strip_from_swatches %}
{% assign v = v | remove: strip %}
{% endfor %}
{% if shop_name contains "Palladium US" %}
{{ value | replace: "Womens", "W" | replace: "Big Kids", "K" | replace: "Mens", "M" | replace: "Little Kids", "K" }}
{% else %}
{% if shop_name contains "K-Swiss US" and product.tags contains "UNISEX" %}
{{ value| replace: "Womens", "W" | replace: "Big Kids", "K" | replace: "Mens", "M" | replace: "Little Kids", "K" }}
{% else %}
{% if childrenSizes == "true" and shop_name contains "K-Swiss US" %}
{% if product.tags contains "INFANTS" %}
{{ v }}C
{% elsif product.tags contains "CHILDREN" %}
{% if v <= 3 %}
{{ v }}Y
{% else %}
{{ v }}C
{% endif %}
{% elsif product.tags contains "VARSITY" %}
{{ v }}Y
{% else %}
{{ v }}
{% endif %}
{% else %}
{{ v }}
{% endif %}
{% endif %}
{% endif %}
{% endif %}
{% endif %}
{% else %}
{% assign pdp_coming_soon = 'true' %}
{% assign pdp_coming_soon_message = 'Coming Soon. Enter your email below to get notified once it becomes available.' %}
{% if product.tags contains "SMART_TAG_COMINGSOON" %}
{% if pdp_coming_soon == 'true' %}
{{ pdp_coming_soon_message }}
{% endif %}
{% else %}
Sold out
{% endif %}
We took our best-selling model and made it even better. The Hypercourt Express 2 is a lightweight, breathable tennis shoe - making it the ideal choice for a variety of playing styles and levels. With added Surgelite midsole technology, the Hypercourt Express 2 becomes even lighter and more comfortable while keeping its trademark breathability and generous fit. Additionally, the model introduces Durawrap Flex, giving the shoe more support with no break-in period. The reinvented upper elevates the shoe with a modern, fresh look.
•Synthetic Leather Upper
•Textile Collar Lining
•Molded Rubber Outsole
•CMEVA Midsole
•Molded Ortholite x40 Sock Liner
•Lace Closure
SHIPPING
Kswiss.com will ship all orders Monday-Friday. All orders received with Two-Day Air by 10:30AM PST will ship the same business day, Monday through Friday. All Standard FedEx Ground orders will ship within 2 to 3 business days.
Note that all orders placed after 10:30AM PST on Fridays, Saturday or Sunday will not processed until the next business day.
RETURNS/EXCHANGES
We hope you love your K-Swiss product, but if you’re not completely satisfied, you can return or exchange merchandise within 30 days of purchase. Extended return/exchanges window may apply during holiday.