www.lorrainetracey.shop Open in urlscan Pro
2606:4700:3033::6815:3a13  Public Scan

Submitted URL: http://lorrainetracey.shop/verkauf/damen-plissiertes-lavalliere-minikleid-wild-barocco-animalier-versace-kleider
Effective URL: https://www.lorrainetracey.shop/verkauf/damen-plissiertes-lavalliere-minikleid-wild-barocco-animalier-versace-kleider/
Submission: On November 06 via api from US — Scanned from CA

Form analysis 4 forms found in the DOM

GET https://www.lorrainetracey.shop/

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

GET https://www.lorrainetracey.shop/

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

POST https://www.lorrainetracey.shop/verkauf/damen-plissiertes-lavalliere-minikleid-wild-barocco-animalier-versace-kleider/

<form class="cart" action="https://www.lorrainetracey.shop/verkauf/damen-plissiertes-lavalliere-minikleid-wild-barocco-animalier-versace-kleider/" method="post" enctype="multipart/form-data">
  <div class="custom_options">
    <!-- Product Options Start-->
    <div class="fmecustomgroup">
      <label> Größe <span class="required">*</span> :- </label>
      <select type="select" class="fma fmeop fmeinput" name="product_options[größe]">
        <option data-price="" value="36"> 36 </option>
        <option data-price="" value="38"> 38 </option>
        <option data-price="" value="40"> 40 </option>
        <option data-price="" value="42"> 42 </option>
        <option data-price="" value="44"> 44 </option>
        <option data-price="" value="46"> 46 </option>
        <option data-price="" value="48"> 48 </option>
      </select>
    </div>
    <!-- Product Options End-->
  </div>
  <div class="price_total">
    <div id="product_options_total" product-type="simple" product-price="51.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: "&euro;",
              format: "%s%v"
            }, "2", ".", ","); // €4.999,99
          } else if (price_form == 'left_space') {
            op_price = accounting.formatMoney(option_total, {
              symbol: "&euro;",
              format: "%s %v"
            }, "2", ".", ","); // €4.999,99
          } else if (price_form == 'right') {
            op_price = accounting.formatMoney(option_total, {
              symbol: "&euro;",
              format: "%v%s"
            }, "2", ".", ","); // €4.999,99
          } else if (price_form == 'right_space') {
            op_price = accounting.formatMoney(option_total, {
              symbol: "&euro;",
              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: "&euro;",
              format: "%s%v"
            }, "2", ".", ","); // €4.999,99
          } else if (price_form == 'left_space') {
            fi_price = accounting.formatMoney(final_total, {
              symbol: "&euro;",
              format: "%s %v"
            }, "2", ".", ","); // €4.999,99
          } else if (price_form == 'right') {
            fi_price = accounting.formatMoney(final_total, {
              symbol: "&euro;",
              format: "%v%s"
            }, "2", ".", ","); // €4.999,99
          } else if (price_form == 'right_space') {
            fi_price = accounting.formatMoney(final_total, {
              symbol: "&euro;",
              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.lorrainetracey.shop/wp-content/plugins/fma-product-custom-options/";
  </script>
  <div class="quantity">
    <label class="screen-reader-text" for="quantity_672ab28bb1d67">Damen Plissiertes Lavallière-Minikleid Wild Barocco Animalier | Versace Kleider Menge</label>
    <input type="number" id="quantity_672ab28bb1d67" class="input-text qty text" step="1" min="1" max="" name="quantity" value="1" title="Menge" size="4" placeholder="" inputmode="numeric" autocomplete="off">
  </div>
  <button type="submit" name="add-to-cart" value="16571" class="single_add_to_cart_button button alt">In den Warenkorb</button>
</form>

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

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

Lorraine Tracey

Lorraine Tracey

 * Neue Ankünfte
 * Damen
   * Kleidung
     * Kleider
     * Oberbekleidung & Mäntel
     * Blazer & Jacken
     * Anzüge
     * Röcke
     * T-Shirts & Sweatshirts
     * Blusen & Tops
     * Strick
     * Hosen & Shorts
     * Denim
     * Sportbekleidung
   * Taschen
     * Tote Bags
     * Henkeltaschen
     * Schultertaschen & Umhängetaschen
     * Kleio
     * Versace Tag
     * Medusa ’95
     * Mini-Taschen & Clutches
     * La Medusa
     * Athena
     * Greca Goddess
   * Schuhe
     * Loafer & Ballerinas
     * Pumps & Slingpumps
     * Sandalen
     * Stiefel
     * Medusa ’95
     * Sneakers
     * Gianni Ribbon
     * Plateauschuhe
     * Alia
     * Greca
     * Versace Mercury
   * Accessoires
     * Gürtel
     * Geldbörsen
     * Haarschmuck
     * Sonnenbrillen
     * Weiche Accessoires
     * Hüte & Kappen
     * Uhren
     * Düfte
   * Modeschmuck
     * Halsketten
     * Armbänder
     * Ohrringe
     * Ringe
     * Haar-Schmuck
   * Unterwäsche & Strandkleidung
     * Loungewear & Pyjamas
     * BHs & Slips
     * Bademäntel & Morgenmäntel
     * Socken
     * Badebekleidung
     * Strandaccessoires
 * Herren
   * Kleidung
     * Jacken & Mäntel
     * Blazer & Anzüge
     * Hemden
     * Strick
     * T-Shirts & Poloshirts
     * Sweatshirts
     * Hosen & Shorts
     * Denim
   * Schuhe
     * Sneakers
     * Loafers & Halbschuhe
     * Driver-Schuhe
     * Greca
     * Stiefel
     * Derby-Schuhe
     * Sandalen & Pantoletten
     * Odissea
     * Trigreca
     * Villa
     * Versace Mercury
   * Taschen
     * Umhängetaschen & Messenger
     * Tote Bags
     * Pouches
     * Medusa Biggie
     * Cargo
     * Athena
   * Accessoires
     * Gürtel
     * Geldbörsen
     * Sonnenbrillen
     * Weiche Accessoires
     * Hüte & Kappen
     * Uhren
     * Düfte
   * Modeschmuck
     * Halsketten
     * Ringe
     * Armbänder
     * Ohrringe
     * Manschettenknöpfe und Broschen
   * Unterwäsche & Strandmode
     * Loungewear & Pyjamas
     * Bademäntel
     * Boxershorts
     * Slips
     * Socken
     * Bademode
     * Strand Accessoires
 * Home & Lifestyle
   * Textilien
     * Personalisierte Bademäntel
     * Bettwäsche
     * Wohn- & Bettdecken
     * Hausschuhe
     * Bademäntel
     * Badtextilien
   * Geschirr
     * Teller
     * Accessoires
     * Besteck
     * Kaffee & Tee
     * Glaswaren
     * Alphabet-Kollektion
   * Wohnzimmer
     * Kissen
     * Kerzen
     * Wandtapete
     * Dekoration
     * Vasen
   * Lifestyle
     * Schreibwaren
     * Reisen
     * Brettspiele
     * Sport
     * Haustier-Accessoires
 * Kinder
   * Neugeborene (0-18 M)
     * Kleidung
     * Accessoires
     * Geschenksets
     * Schuhe & Erste Schritte
     * Kinderwagen & Co.
   * Babys Und Kleinkinder (6 M -3 J) Mädchen
     * Kleidung
     * Schuhe
   * Babys Und Kleinkinder (6 M -3 J) Jungen
     * Kleidung
     * Schuhe
   * Mädchen (4- 14 J)
     * Kleidung
     * Schuhe
     * Accessoires
     * Strandmode
   * Jungen (4- 14 J)
     * Kleidung
     * Schuhe
     * Accessoires
     * Strandmode
 * Versace
 * Merkzettel
 * Mein Konto

0


WARENKORB

Es befinden sich keine Produkte im Warenkorb.

Search for: Search
0


WARENKORB

Es befinden sich keine Produkte im Warenkorb.

Search for: Search

StartseiteDamenKleidungKleiderDamen Plissiertes Lavallière-Minikleid Wild
Barocco Animalier | Versace Kleider

by Fmeaddons

Angebot!
🔍

 1. 
 2. 
 3. 
 4. 


DAMEN PLISSIERTES LAVALLIÈRE-MINIKLEID WILD BAROCCO ANIMALIER | VERSACE KLEIDER

€73,91 €51,74

Größentabellen

Damen Größe

Kleider, Jacken & Mäntel,Blazer, Blusen & Tops,Strick, Röcke ,

IT 36 / XXS 38 / XS 40 / S 42 / M 44 / L 46 / XL 48 / XXL UK/AU 4 6 8 10 12 14
16 US 0 2 4 6 8 10 12 FR 32 34 36 38 40 42 44 DE 32 34 36 38 40 42 44 BRUST 81
84 87 90 94 98 103 UNTERBRUST 67 70 73 76 80 84 89 TAILLE 63 66 69 72 76 80 86
HÜFTE 87 90 93 96 100 104 109 ÄRMELLÄNGE 79.1 80.4 81.7 83 85 85.8 86.6
SCHULTERN 37 38 39 40 41.4 42.4 43.4

Tshirts & Sweatshirts

IT UK US EU 36/XXS 4 0 32 38/XS 6 2 34 40/S 8 4 36 42/M 10 6 38 44/L 12 8 40
46/XL 14 10 42

HOSEN & JEANS

IT 36 / XXS 38 / XS 40/ S 42/ M 44/ L 46 / XL 48 / XXL UK/AU 4 6 8 10 12 14 16
US 0 2 4 6 8 10 12 FR 32 34 36 38 40 42 44 DE 32 34 36 38 40 42 44

Sportbekleidung

IT IT US UK EU FR 1 S XS XS S 38 2 M S S M 40 3 L M M L 42 4 XL L L XL 44 5 XXL
XL XL XXL 46

UNTERWÄSCHE BEACHWEAR FÜR DAMEN

GRÖSSE LABEL 1 2 3 4 5 IT 32 34 36 38 40 US 32 34 36 38 40 UK 32 34 36 38 40 EU
70 75 80 85 90 FR 85 90 95 100 105 AU 10 12 14 16 18

Ein kurzärmliges Minikleid mit Faltenrock und spitzem Kragen. Dieses Minikleid
im Wild Barocco-Print verfügt über eine Lavallière-Krawatte und akzentu…

Größe * :- 36 38 40 42 44 46 48

Damen Plissiertes Lavallière-Minikleid Wild Barocco Animalier | Versace Kleider
Menge
In den Warenkorb
Zur Wunschliste hinzufügen
Artikelnummer: PTRKBYQA1-F88568 Kategorien: Damen, Kleider, Kleidung
Schlagwörter: Animalier, Versace
 * Beschreibung
 * Bewertungen (0)
 * Kontakt
 * Versand


BESCHREIBUNG

Ein kurzärmliges Minikleid mit Faltenrock und spitzem Kragen. Dieses Minikleid
im Wild Barocco-Print verfügt über eine Lavallière-Krawatte und akzentuierte
Medusa-Knöpfe.

 * Wild Barocco-Print
 * Medusa-Metalldetail
 * Kurzärmelig
 * Spitzer Kragen
 * Schalkrawattenverschluss
 * Verdeckte Knopfleiste
 * Aufgesetzte Brusttaschen
 * Obermaterial: 100 % Seide

Artikel: 1016415-1A12322_5N440


BEWERTUNGEN

Es gibt noch keine Bewertungen.

Schreibe die erste Bewertung für „Damen Plissiertes Lavallière-Minikleid Wild
Barocco Animalier | Versace Kleider“ Antworten abbrechen

Du mußt angemeldet sein, um eine Bewertung abgeben zu können.



Ihr Name (Pflichtfeld)


Ihre E-Mail-Adresse (Pflichtfeld)


Betreff


Ihre Nachricht







 * 100% Sicher shoppen
 * Versandkostenfrei ab € 60
 * Sichere Zahlung mit SSL-Verschlüsselung
 * 20-30 Tage rückgabegarantie
 * Zahlungsmethoden:  




ÄHNLICHE PRODUKTE

 * Angebot!
   
   
   DAMEN TAILLIERTES MIDIKLEID AUS LUREX LEOPARD ROT | VERSACE KLEIDER
   
   €73,91 €59,13 Ausführung wählen
 * Angebot!
   
   
   DAMEN T-SHIRT-STRICKKLEID AUS JACQUARD LEOPARD ANIMALIER | VERSACE STRICK
   
   €73,91 €59,13 Ausführung wählen
 * Angebot!
   
   
   DAMEN KLEINE MEDUSA '95 HANDTASCHE IN KROKO-OPTIK BURGUNDERROT | VERSACE
   HENKELTASCHEN
   
   €73,91 €51,74 In den Warenkorb
 * Angebot!
   
   
   DAMEN A-LINIEN-MINIKLEID AUS TWEED SCHWARZ+ROT | VERSACE KLEIDER
   
   €83,15 €58,21 Ausführung wählen


LORRAINE TRACEY

 * 100% Sicher shoppen
 * Versandkostenfrei ab € 60
 * Sichere Zahlung mit SSL-Verschlüsselung
 * 20-30 Tage rückgabegarantie
 * Zahlungsmethoden:  


PRODUKTE

 * Home & Lifestyle Medusa Serviettenring Silber | Versace Accessoires €74,00
   €59,20
 * Home & Lifestyle Virtus Alphabet-Platzteller F 33 cm Weiß+gold | Versace
   Teller €83,15 €66,52


KUNDENSERVICE

 * Kontakt
 * Datenschutz
 * Versand
 * Sendungsverfolgung
 * Mein Konto


NEWSLETTER

Email

Copyright © 2024 lorrainetracey.shop - Alle Rechte Vorbehalten.