www.eliekelpie.com Open in urlscan Pro
2606:4700:3033::ac43:8677  Public Scan

Submitted URL: http://eliekelpie.com/hot/women-gifts-boat-shoes-sperry-koifish-two-tone-boat-shoe-tan
Effective URL: https://www.eliekelpie.com/hot/women-gifts-boat-shoes-sperry-koifish-two-tone-boat-shoe-tan/
Submission: On November 05 via api from US — Scanned from DE

Form analysis 4 forms found in the DOM

GET https://www.eliekelpie.com/

<form role="search" method="get" class="search-form" action="https://www.eliekelpie.com/">
  <label>
    <span class="screen-reader-text">Search for:</span>
    <input type="search" class="search-field" placeholder="Search …" value="" name="s">
  </label>
  <input type="submit" class="search-submit" value="Search">
  <input type="hidden" name="post_type" value="product">
</form>

GET https://www.eliekelpie.com/

<form role="search" method="get" class="search-form" action="https://www.eliekelpie.com/">
  <label>
    <span class="screen-reader-text">Search for:</span>
    <input type="search" class="search-field" placeholder="Search …" value="" name="s">
  </label>
  <input type="submit" class="search-submit" value="Search">
  <input type="hidden" name="post_type" value="product">
</form>

POST https://www.eliekelpie.com/hot/women-gifts-boat-shoes-sperry-koifish-two-tone-boat-shoe-tan/

<form class="cart" action="https://www.eliekelpie.com/hot/women-gifts-boat-shoes-sperry-koifish-two-tone-boat-shoe-tan/" method="post" enctype="multipart/form-data">
  <div class="custom_options">
    <!-- Product Options Start-->
    <div class="fmecustomgroup">
      <label> Size <span class="required">*</span> :- </label>
      <select type="select" class="fma fmeop fmeinput" name="product_options[size]">
        <option data-price="" value="5"> 5 </option>
        <option data-price="" value="5.5"> 5.5 </option>
        <option data-price="" value="6"> 6 </option>
        <option data-price="" value="6.5"> 6.5 </option>
        <option data-price="" value="7"> 7 </option>
        <option data-price="" value="7.5"> 7.5 </option>
        <option data-price="" value="8"> 8 </option>
        <option data-price="" value="8.5"> 8.5 </option>
        <option data-price="" value="9"> 9 </option>
        <option data-price="" value="9.5"> 9.5 </option>
        <option data-price="" value="10"> 10 </option>
        <option data-price="" value="11"> 11 </option>
        <option data-price="" value="12"> 12 </option>
      </select>
    </div>
    <!-- Product Options End-->
  </div>
  <div class="price_total">
    <div id="product_options_total" product-type="simple" product-price="57.74"></div>
  </div>
  <script type="text/javascript">
    jQuery(document).ready(function($) {
      $(this).on('change', 'input:text, select, textarea, input.qty', function() {
        ProductCustomOptions();
      });
      ProductCustomOptions();

      function ProductCustomOptions() {
        var option_total = 0;
        var product_price = $('#product_options_total').attr('product-price');
        var product_total_price = 0;
        var final_total = 0;
        $('.fmeop').each(function() {
          var option_price = 0;
          if ($(this).attr('type') == 'select') {
            option_price = $("option:selected", this).attr('data-price');
          } else if ($(this).attr('type') == 'mselect') {
            var sum = option_price;
            $("option:selected", this).each(function() {
              str = parseFloat($(this).attr('data-price'));
              sum = str + sum;
            });
            option_price = sum;
          } else {
            option_price = $(this).attr('data-price');
          }
          var value_entered = $(this).val();
          if (value_entered != '' || option_price == 0) {
            option_total = parseFloat(option_total) + parseFloat(option_price);
          }
        });
        var qty = $('.qty').val();
        if (option_total > 0 && qty > 0) {
          option_total = parseFloat(option_total * qty);
          var price_form = "left";
          var op_price = '';
          if (price_form == 'left') {
            op_price = accounting.formatMoney(option_total, {
              symbol: "&#36;",
              format: "%s%v"
            }, "2", ",", "."); // €4.999,99
          } else if (price_form == 'left_space') {
            op_price = accounting.formatMoney(option_total, {
              symbol: "&#36;",
              format: "%s %v"
            }, "2", ",", "."); // €4.999,99
          } else if (price_form == 'right') {
            op_price = accounting.formatMoney(option_total, {
              symbol: "&#36;",
              format: "%v%s"
            }, "2", ",", "."); // €4.999,99
          } else if (price_form == 'right_space') {
            op_price = accounting.formatMoney(option_total, {
              symbol: "&#36;",
              format: "%v %s"
            }, "2", ",", "."); // €4.999,99
          }
          if (product_price) {
            product_total_price = parseFloat(product_price * qty);
          }
          final_total = option_total + product_total_price;
          var fi_price = '';
          if (price_form == 'left') {
            fi_price = accounting.formatMoney(final_total, {
              symbol: "&#36;",
              format: "%s%v"
            }, "2", ",", "."); // €4.999,99
          } else if (price_form == 'left_space') {
            fi_price = accounting.formatMoney(final_total, {
              symbol: "&#36;",
              format: "%s %v"
            }, "2", ",", "."); // €4.999,99
          } else if (price_form == 'right') {
            fi_price = accounting.formatMoney(final_total, {
              symbol: "&#36;",
              format: "%v%s"
            }, "2", ",", "."); // €4.999,99
          } else if (price_form == 'right_space') {
            fi_price = accounting.formatMoney(final_total, {
              symbol: "&#36;",
              format: "%v %s"
            }, "2", ",", "."); // €4.999,99
          }
          html = '';
          html = html + '<div class="tprice"><div class="leftprice">Options Total:</div><div class="rightprice optionprice">' + op_price + '</div></div>';
          if (final_total) {
            html = html + '<div class="tprice"><div class="leftprice">Final Total:</div><div class="rightprice finalprice">' + fi_price + '</div></div>';
          }
          html = html + '</dl>';
          $('#product_options_total').html(html);
        } else {
          $('#product_options_total').html('');
        }
      }
    });
  </script>
  <script>
    var URL = "https://www.eliekelpie.com/wp-content/plugins/fma-product-custom-options/";
  </script>
  <div class="quantity">
    <label class="screen-reader-text" for="quantity_672aad2ab6991">Women/Gifts Boat Shoes | Sperry Koifish Two-Tone Boat Shoe Tan quantity</label>
    <input type="number" id="quantity_672aad2ab6991" class="input-text qty text" step="1" min="1" max="" name="quantity" value="1" title="Qty" size="4" placeholder="" inputmode="numeric" autocomplete="off">
  </div>
  <button type="submit" name="add-to-cart" value="17620" class="single_add_to_cart_button button alt">Add to cart</button>
</form>

POST https://www.eliekelpie.com/?na=s

<form method="post" action="https://www.eliekelpie.com/?na=s">
  <input type="hidden" name="nr" value="widget"><input type="hidden" name="nlang" value="">
  <div class="tnp-field tnp-field-email"><label for="tnp-1">Email</label>
    <input class="tnp-email" type="email" name="ne" id="tnp-1" value="" required="">
  </div>
  <div class="tnp-field tnp-field-button"><input class="tnp-submit" type="submit" value="Subscribe">
  </div>
</form>

Text Content

CHAT ME

Email Phone



Continue




Women/Gifts Boat Shoes | Sperry Koifish Two-Tone Boat Shoe Tan - Elie Kelpie
Skip to Content
Search for:

Elie Kelpie

Elie Kelpie

0
 * New Arrivals
 * Women
   * Loafers & Flats
   * Wedges & Heels
   * Slippers
   * Sandals
   * Sport
   * Rain & Duck Boots
   * Boat Shoes
   * Boots
   * Sneakers
   * Apparel & Accessories
     * Women
     * Apparel
     * Bags
     * Shoe Care & Laces
     * Socks & Liners
   * New & Trending
     * Women
       * Gifts for Her
       * Fall Edit
   * Collections
     * Women
     * Torrent
     * SeaCycled
     * Seaport
     * Saltwater
     * Cloud
 * Men
   * Shoes
   * Sport
   * Rain & Duck Boots
   * Sandals
   * Slippers & Moccasins
   * Boots
   * Sneakers
   * Boat Shoes
   * Loafers & Oxfords
   * Men
   * Socks & Liners
   * Men
     * Gold Cup Luxury
     * Saltwater
     * Handcrafted in Maine
     * Authentic Original
     * Striper II
     * SeaCycled
   * Men
     * Fall Edit
     * Sperry x Rowing Blazers
     * Gifts for Him
 * Kids
   * Shop By Size
   * Baby
   * Little Kid (sizes 1-10)
   * Big Kid (sizes 10.5 & up)
   * Shop Girls
     * Kids
     * Sneakers
     * Sandals
     * Boat Shoes
     * Boots
   * Shop Boys
     * Kids
     * Boots
     * Boat Shoes
     * Sneakers
     * Sandals
   * Kids
     * Washables
     * Dress Shoes
     * Uniform
     * Water Friendly
     * Easy On & Off
     * Rain Boots
     * Gifts for Kids
 * Gender Inclusive
   * Gender Inclusive
   * Gender Inclusive
 * Gifts
   * Boat Shoes
   * Slippers
   * Gifts for Kids
   * Rain & Winter Boots
   * Stocking Stuffers
 * Sperry
 * Wishlist
 * My account

Search for:
0
Home Product GiftsBoat Shoes Women/Gifts Boat Shoes | Sperry Koifish Two-Tone
Boat Shoe Tan

by Fmeaddons

Sale!
🔍

 1. 
 2. 
 3. 
 4. 
 5. 
 6. 


WOMEN/GIFTS BOAT SHOES | SPERRY KOIFISH TWO-TONE BOAT SHOE TAN

$76.99 $57.74

Size Guides

Women Size


WOMEN'S FOOTWEAR SIZE CHART

USA UK EUR AUS JPN MEX 4 1.5 34 4.5 2 34.5 5 2.5 35 5.5 3 35.5 6 3.5 36 4.5 22
6.5 4 37 5 22.5 7 4.5 37.5 5.5 23 7.5 5 38 6 23.5 4.5 8 5.5 39 6.5 24 5 8.5 6
39.5 7 24.5 5.5 9 6.5 40 7.5 25 6 9.5 7 40.5 8 25.5 6.5 10 7.5 41 8.5 26 7 10.5
8 42 11 8.5 42.5 11.5 9 43 12 9.5 43.5 12.5 10 44 13 10.5 44.5


WOMEN'S APPAREL SIZE CHART

US Women's Size Chest/Bust (in) Waist (in) Hip (in) Inseam (in) XS 30-32 in
22-24 in 34-36 in 29 in S 32-34 in 24-26 in 36-38 in 29.5 in M 36-37 in 27-28 in
39-40 in 30 in L 38-40 in 29-31 in 41-43 in 30.5 in XL 41-43 in 32-34 in 44-46
in 31 in

Size Guides

Kids Size


KIDS' FOOTWEAR SIZE CHART

Kids' Size Name US Kids' Size Length
(in) Length
(cm) Medium
Width Wide
Width INFANT 1 3 1∕2 in 9 cm 4 3∕4 in - INFANT 2 3 7∕8 in 9.9 cm 5 in - INFANT 3
4 1∕4 in 10.7 cm 5 1∕8 in - INFANT 4 4 5∕8 in 11.6 cm 5 3∕8 in - LITTLE KID 3.5
4 3∕8 in 11.2 cm 5 1∕4 in 5 1∕2 in LITTLE KID 4 4 5∕8 in 11.6 cm 5 3∕8 in 5 1∕2
in LITTLE KID 4.5 4 3∕4 in 12 cm 5 1∕2 in 5 5∕8 in LITTLE KID 5 4 7∕8 in 12.4 cm
5 1∕2 in 5 3∕4 in LITTLE KID 5.5 5 1∕8 in 12.9 cm 5 5∕8 in 5 7∕8 in LITTLE KID 6
5 1∕4 in 13.3 cm 5 3∕4 in 5 7∕8 in LITTLE KID 6.5 5 3∕8 in 13.7 cm 5 7∕8 in 5
7∕8 in LITTLE KID 7 5 5∕8 in 14.1 cm 5 7∕8 in 6 in LITTLE KID 7.5 5 3∕4 in 14.6
cm 6 in 6 1∕8 in LITTLE KID 8 5 7∕8 in 15 cm 6 1∕8 in 6 1∕4 in LITTLE KID 8.5 6
1∕8 in 15.4 cm 6 1∕4 in 6 1∕4 in LITTLE KID 9 6 1∕4 in 15.8 cm 6 1∕4 in 6 3∕8 in
LITTLE KID 9.5 6 3∕8 in 16.3 cm 6 3∕8 in 6 1∕2 in LITTLE KID 10 6 5∕8 in 16.7 cm
6 1∕2 in 6 5∕8 in BIG KID 10.5 6 3∕4 in 17.1 cm 6 5∕8 in 6 5∕8 in BIG KID 11 6
7∕8 in 17.5 cm 6 5∕8 in 6 3∕4 in BIG KID 11.5 7 1∕8 in 18 cm 6 3∕4 in 6 7∕8 in
BIG KID 12 7 1∕4 in 18.4 cm 6 7∕8 in 7 in BIG KID 12.5 7 3∕8 in 18.8 cm 7 1∕8 in
7 in BIG KID 13 7 5∕8 in 19.2 cm 7 1∕4 in 7 3∕8 in BIG KID 13.5 7 3∕4 in 19.7 cm
7 3∕8 in 7 1∕2 in BIG KID 1 7 7∕8 in 20.1 cm 7 1∕2 in 7 5∕8 in BIG KID 1.5 8 1∕8
in 20.5 cm 7 5∕8 in 7 3∕4 in BIG KID 2 8 1∕4 in 20.9 cm 7 3∕4 in 7 7∕8 in BIG
KID 2.5 8 3∕8 in 21.3 cm 7 7∕8 in 8 in BIG KID 3 8 5∕8 in 21.8 cm 8 in 8 1∕8 in
BIG KID 3.5 8 3∕4 in 22.2 cm 8 1∕8 in 8 1∕4 in BIG KID 4 8 7∕8 in 22.6 cm 8 1∕4
in 8 3∕8 in BIG KID 4.5 9 1∕8 in 23.1 cm 8 3∕8 in 8 1∕2 in BIG KID 5 9 1∕4 in
23.5 cm 8 1∕2 in 8 5∕8 in BIG KID 5.5 9 3∕8 in 23.9 cm 8 5∕8 in 8 3∕4 in BIG KID
6 9 5∕8 in 24.3 cm 8 3∕4 in 8 7∕8 in BIG KID 6.5 9 3∕4 in 24.8 cm 8 7∕8 in 9 in
BIG KID 7 9 7∕8 in 25.2 cm 9 in 9 1∕8 in

We love our classic boat shoes, but this lower profile, more feminine design is
quickly becoming our favorite. The EVA-foam midsole and lightweight fe…

Size * :- 5 5.5 6 6.5 7 7.5 8 8.5 9 9.5 10 11 12

Women/Gifts Boat Shoes | Sperry Koifish Two-Tone Boat Shoe Tan quantity
Add to cart
Add to wishlist
SKU: LXOHRWMX8L790944 Categories: Boat Shoes, Boat Shoes, Gifts, Shoes, Women
Tags: Gifts, Sperry, Tan, Women
 * Description
 * Reviews (0)
 * Contact
 * Shipping


DESCRIPTION

We love our classic boat shoes, but this lower profile, more feminine design is
quickly becoming our favorite. The EVA-foam midsole and lightweight feel keep
things comfy, while the textured stripe adds a preppy twist. Featuring premium
leather and textured woven uppers, these shoes will quickly become a staple in
your rotation.

A sleek silhouette and lower profile creates a more feminine boat shoe



Premium leather and textured woven uppers



360° Lacing System™ technology for a customized fit



Metal eyelets contain 70% recycled material



EVA-foam midsole for lightweight shock absorption



Non-marking rubber outsole featuring molded Wave-Siping™ technology for enhanced
traction


REVIEWS

There are no reviews yet.

Be the first to review “Women/Gifts Boat Shoes | Sperry Koifish Two-Tone Boat
Shoe Tan” Cancel reply

You must be logged in to post a review.



Your Name (required)


Your Email (required)


Subject


Your Message







 * 100% Secure Shopping
 * Free Shipping Over $ 60
 * Secure Shopping SSL Encryption
 * 20-30 Days Return Guarantee
 * Payment Methods:  




RELATED PRODUCTS

 * Sale!
   
   
   WOMEN RAIN & DUCK BOOTS | SPERRY SALTWATER CHEVRON WOOL DUCK BOOT JAVA
   
   $62.98 $59.83 Select options
 * Sale!
   
   
   WOMEN RAIN & DUCK BOOTS | SPERRY SALTWATER EYELET DUCK BOOT PINK
   
   $62.98 $59.83 Select options
 * Sale!
   
   
   WOMEN/GIFTS RAIN & DUCK BOOTS | SPERRY SALTWATER BUFFALO CHECK DUCK BOOT
   BLACK
   
   $76.99 $42.35 Select options
 * Sale!
   
   
   WOMEN/GIFTS RAIN & DUCK BOOTS | SPERRY MARITIME REPEL THINSULATE™ WATERPROOF
   SNOW BOOT BLACK
   
   $89.99 $67.49 Select options


ELIE KELPIE

 * 100% Secure Shopping
 * Free Shipping Over $ 60
 * Secure Shopping SSL Encryption
 * 20-30 Days Return Guarantee
 * Payment Methods:  


PRODUCTS

 * Kids Uniform | Sperry Big Kid's Tevin Dress Shoe Camel $49.95 $47.45
 * Men/Gifts Boat Shoes | Sperry Authentic Original™ Boat Shoe Black $60.98
   $39.63


CUSTOMER SERVICE

 * Contact
 * Privacy
 * Shipping
 * Order Tracking
 * My account


NEWSLETTER

Email

Copyright © 2024 eliekelpie.com - All Rights Reserved.