www.despoinaporiki.shop Open in urlscan Pro
2606:4700:3036::ac43:d107  Public Scan

Submitted URL: http://www.despoinaporiki.shop/product/johnny-was-kimonos-women-journey-kimono-petite-multi/
Effective URL: https://www.despoinaporiki.shop/product/johnny-was-kimonos-women-journey-kimono-petite-multi/
Submission: On April 08 via api from US — Scanned from US

Form analysis 3 forms found in the DOM

GET https://www.despoinaporiki.shop/

<form method="get" action="https://www.despoinaporiki.shop/">
  <select class="woo-product-search-select" name="product_cat">
    <option value=""> All Products </option>
    <option value="bedding">Bedding (34)</option>
    <option value="belts">Belts (4)</option>
    <option value="blouses">Blouses (58)</option>
    <option value="boots">Boots (5)</option>
    <option value="bottoms">Bottoms (4)</option>
    <option value="bracelets">Bracelets (8)</option>
    <option value="button-downs">Button Downs (17)</option>
    <option value="candles-fragrances">Candles + Fragrances (15)</option>
    <option value="dog-accessories">Dog Accessories (11)</option>
    <option value="dresses">Dresses (11)</option>
    <option value="earrings">Earrings (3)</option>
    <option value="eyewear">Eyewear (11)</option>
    <option value="fragrances">Fragrances (16)</option>
    <option value="handbags">Handbags (8)</option>
    <option value="hats">Hats (4)</option>
    <option value="hoodies">Hoodies (4)</option>
    <option value="jackets">Jackets (12)</option>
    <option value="jeans">Jeans (7)</option>
    <option value="joggers">Joggers (5)</option>
    <option value="joseph-brooks">Joseph Brooks (6)</option>
    <option value="kimonos">Kimonos (19)</option>
    <option value="leggings">Leggings (13)</option>
    <option value="masks">Masks (4)</option>
    <option value="maxi">Maxi (26)</option>
    <option value="midi">Midi (35)</option>
    <option value="mini">Mini (14)</option>
    <option value="pajama-sets">Pajama Sets (16)</option>
    <option value="pants">Pants (25)</option>
    <option value="pillows">Pillows (5)</option>
    <option value="pull-over">Pull-Over (8)</option>
    <option value="scarves">Scarves (48)</option>
    <option value="shorts">Shorts (1)</option>
    <option value="skirts">Skirts (2)</option>
    <option value="slips-and-camis">Slips &amp; Camis (10)</option>
    <option value="stationery">Stationery (4)</option>
    <option value="swim">Swim (1)</option>
    <option value="tees-and-tanks">Tees &amp; Tanks (61)</option>
    <option value="top">Top (38)</option>
    <option value="tunics">Tunics (23)</option>
    <option value="women-accessories">Women Accessories (113)</option>
    <option value="women-blankets-home">Women Blankets + Home (69)</option>
    <option value="women-clothing">Women Clothing (396)</option>
  </select>
  <input type="hidden" name="post_type" value="product">
  <input class="woo-product-search-input" name="s" type="text" placeholder="Search...">
  <button class="woo-product-search-button" type="submit"><i class="fa fa-search" aria-hidden="true"></i></button>
</form>

POST https://www.despoinaporiki.shop/product/johnny-was-kimonos-women-journey-kimono-petite-multi/

<form class="cart" action="https://www.despoinaporiki.shop/product/johnny-was-kimonos-women-journey-kimono-petite-multi/" 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="XXS"> XXS </option>
        <option data-price="" value="XS"> XS </option>
        <option data-price="" value="S"> S </option>
        <option data-price="" value="M"> M </option>
        <option data-price="" value="L"> L </option>
        <option data-price="" value="XL"> XL </option>
        <option data-price="" value="XXL"> XXL </option>
        <option data-price="" value="PXXS"> PXXS </option>
        <option data-price="" value="PXS"> PXS </option>
        <option data-price="" value="PS"> PS </option>
        <option data-price="" value="PM"> PM </option>
        <option data-price="" value="PL"> PL </option>
        <option data-price="" value="PXL"> PXL </option>
        <option data-price="" value="PXXL"> PXXL </option>
      </select>
    </div>
    <!-- Product Options End-->
  </div>
  <div class="price_total">
    <div id="product_options_total" product-type="simple" product-price="81.94"></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.despoinaporiki.shop/wp-content/plugins/fma-product-custom-options/";
  </script>
  <div class="quantity">
    <label class="screen-reader-text" for="quantity_6614693c2ca42">Johnny Was Kimonos | Women JOURNEY KIMONO-PETITE Multi quantity</label>
    <input type="number" id="quantity_6614693c2ca42" 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="18583" class="single_add_to_cart_button button alt">Add to cart</button>
</form>

POST https://www.despoinaporiki.shop/?na=s

<form method="post" action="https://www.despoinaporiki.shop/?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

Skip to content

All Products Bedding (34)Belts (4)Blouses (58)Boots (5)Bottoms (4)Bracelets
(8)Button Downs (17)Candles + Fragrances (15)Dog Accessories (11)Dresses
(11)Earrings (3)Eyewear (11)Fragrances (16)Handbags (8)Hats (4)Hoodies
(4)Jackets (12)Jeans (7)Joggers (5)Joseph Brooks (6)Kimonos (19)Leggings
(13)Masks (4)Maxi (26)Midi (35)Mini (14)Pajama Sets (16)Pants (25)Pillows
(5)Pull-Over (8)Scarves (48)Shorts (1)Skirts (2)Slips & Camis (10)Stationery
(4)Swim (1)Tees & Tanks (61)Top (38)Tunics (23)Women Accessories (113)Women
Blankets + Home (69)Women Clothing (396)
0
$0.00

 * No products in the cart.

Menu
 * New Arrivals
 * Women Accessories Expand child menu
   * Scarves
   * Belts
   * Earrings
   * Hats
   * Handbags
   * Eyewear
   * Joseph Brooks
   * Bracelets
   * Boots
   * Fragrances
   * Masks
 * Women Blankets + Home Expand child menu
   * Bedding
   * Stationery
   * Dog Accessories
   * Candles + Fragrances
   * Pillows
 * Women Clothing Expand child menu
   * Slips & Camis
   * Pants
   * Tees & Tanks
   * Blouses
   * Top
   * Midi
   * Maxi
   * Shorts
   * Swim
   * Skirts
   * Hoodies
   * Bottoms
   * Dresses
   * Jackets
   * Leggings
   * Mini
   * Jeans
   * Button Downs
   * Pull-Over
   * Joggers
   * Pajama Sets
   * Tunics
   * Kimonos
 * Wishlist
 * My account

Home / Women Clothing / Kimonos / Johnny Was Kimonos | Women JOURNEY
KIMONO-PETITE Multi


by Fmeaddons

Sale!
🔍

 1. 
 2. 
 3. 
 4. 
 5. 
 6. 
 7. 
 8. 
 9. 


JOHNNY WAS KIMONOS | WOMEN JOURNEY KIMONO-PETITE MULTI

$86.25 $81.94

Size Guides

Women


SIZE CHART

DRESSES & TUNICS, TOPS

SIZE SIZE BUST * WAIST * HIPS * XS 4 33” / 84cm -- 36” / 91cm 24” / 61cm --
27.5” / 70cm 36” / 91cm -- 38.5” / 98cm S 6 35” / 89cm -- 38” / 97cm 26” / 66cm
-- 29.5” / 75cm 38” / 97cm -- 40.5” / 103cm M 810 37” / 94cm -- 40.5” / 103cm
28” / 71cm -- 32” / 81cm 40” / 102cm -- 42” / 107cm L 1214 39.5” / 100cm --
43.5” / 110cm 30.5” / 77cm -- 35” / 89cm 42” / 107cm -- 45.5” / 116cm XL 14
42.5” / 108cm -- 46.5” / 118cm 33.5” / 85cm -- 38” / 97cm 45” / 114cm -- 51.5” /
131cm XXL 16 45.5” / 116cm -- 50” / 127cm 36.5” / 93cm -- 41” / 104cm 51” /
130cm -- 55.5” / 141cm

BOTTOMS

SIZE SIZE WAIST * HIPS * INSEAM * XS 4 24” / 61cm -- 27.5” / 70cm 36” / 91cm --
38.5” / 98cm 26” / 66cm S 6 26” / 66cm -- 29.5” / 75cm 38” / 97cm -- 40.5” /
103cm 26” / 66cm M 810 28” / 71cm -- 32” / 81cm 40” / 102cm -- 42” / 107cm 26” /
66cm L 12 30.5” / 77cm -- 35” / 89cm 42” / 107cm -- 45.5” / 116cm 26” / 66cm XL
14 33.5” / 85cm -- 38” / 97cm 45” / 114cm -- 48.5” / 123cm 26” / 66cm XXL 16
36.5” / 93cm -- 42” / 107cm 48.5” / 123cm -- 51.5” / 131cm 26” / 66cm

DENIM

SIZE WAIST * HIPS * INSEAM * 25 32” / 81cm 34” / 86cm 26” / 66cm 26 34” / 86cm
36” / 91cm 26” / 66cm 27 36” / 91cm 38” / 97cm 26” / 66cm 28 38” / 97cm 40” /
102cm 26” / 66cm 29 40” / 102cm 42” / 107cm 26” / 66cm 30 42” / 107cm 44” /
112cm 26” / 66cm 31 44” / 112cm 46” / 117cm 26” / 66cm 32 46” / 117cm 48” /
122cm 26” / 66cm

PLUS SIZE

SIZE SIZE BUST * WAIST * HIPS * 1X 1618 47” / 119cm 39.5” / 100cm 47” / 119cm 2X
1820 50” / 127cm 42.5” / 108cm 50” / 127cm 3X 2022 53” / 135cm 45.5” / 116cm 53”
/ 135cm

SHOES

US UK 6 36 6.5 to 7 37 7.5 to 8 38 8.5 to 9 39 9 40 10 41 11 42

Artful tailoring and statement prints dominate the Journey Kimono. A striking
outerwear style, this kimono is crafted from sumptuous silk and features…

Size * :- XXS XS S M L XL XXL PXXS PXS PS PM PL PXL PXXL

Johnny Was Kimonos | Women JOURNEY KIMONO-PETITE Multi quantity
Add to cart
Add to wishlist
SKU: HGQS86PPJXI47273 Categories: Kimonos, Women Clothing Tags: Johnny Was,
Multi
 * Description
 * Reviews (0)
 * Contact
 * Shipping


DESCRIPTION

Artful tailoring and statement prints dominate the Journey Kimono. A striking
outerwear style, this kimono is crafted from sumptuous silk and features an open
front, long sleeves, a striped placket, multiple pockets, and a patterned
reversible side. Layer this kimono over simple pieces or opt for a laid-back
look by wearing with a tee and jeans.Product Details:• 100% Silk• Reversible•
Pockets on Seam• Inside Pockets• Fabric Covered Snap Buttons• Model Height:
5'9"• Model is wearing a size Petite Medium• Measurements for size Petite
Medium: Bust- 45 1/2", Length- 42"Note: Sleeve and garment length may vary in
petite sizing.• Have questions about fit or sizing? Chat with us!• Care
instructions: Turn inside out. Hand wash gently. Lay flat to dry. Light steam
iron if necessary.


REVIEWS

There are no reviews yet.

Be the first to review “Johnny Was Kimonos | Women JOURNEY KIMONO-PETITE Multi”
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!
   
   
   JOHNNY WAS KIMONOS | WOMEN TWILIGHT SILK KIMONO EGG PLANT
   
   $98.60 $73.95 Select options
   Add to wishlist
 * Sale!
   
   
   JOHNNY WAS TEES & TANKS | WOMEN SHORT SLEEVE V-NECK LAYERING TEE HEATHER GREY
   
   $69.40 $45.11 Select options
   Add to wishlist
 * Sale!
   
   
   JOHNNY WAS TEES & TANKS | WOMEN LONG SLEEVE CREW NECK LAYERING TEE BLACK
   
   $85.40 $64.05 Select options
   Add to wishlist
 * Sale!
   
   
   JOHNNY WAS MINI | WOMEN IVEY VELVET FIELD TIERED DRESS EGG PLANT
   
   $79.00 $75.05 Select options
   Add to wishlist


DESPOINA PORIKI

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


PRODUCTS

 * Johnny Was Swim | Women LAYLA DRAWSTRING RUCHED TANKINI-PLUS SIZE Multi
   $80.00 $44.00
 * Johnny Was Pants | Women HERO HOUNDSTOOTH PANT Blue Night $69.60 $45.24


CUSTOMER SERVICE

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


NEWSLETTER

Email

Copyright © 2024 despoinaporiki.shop - All Rights Reserved.