www.poetrystores.co.za Open in urlscan Pro
104.16.185.77  Public Scan

URL: https://www.poetrystores.co.za/
Submission: On January 23 via api from ZA — Scanned from DE

Form analysis 4 forms found in the DOM

Name: simpleSearchGET /search/

<form role="search" action="/search/" method="get" name="simpleSearch" class="w-100 position-relative">
  <div class="d-flex position-relative align-items-center js-search-row">
    <div class="search-modal" data-get-trending="https://www.poetrystores.co.za/on/demandware.store/Sites-PT-Site/en_ZA/SearchServices-GetTrendingSearches">
      <img src="/on/demandware.static/Sites-PT-Site/-/default/dw1703a81f/images/search-new.svg" alt="Search icon" class="d-block">
      <input class="form-control search-field search-input-style-mobile  search-input-style-desktop" type="search" name="q" value="" aria-describedby="search-assistive-text" aria-haspopup="listbox" aria-owns="search-results" aria-expanded="false"
        aria-autocomplete="list" aria-activedescendant="" aria-controls="search-results" aria-label="Search (keywords,etc)" placeholder="Search for products" autocomplete="off">
      <img src="/on/demandware.static/Sites-PT-Site/-/default/dw98b94f2f/images/clear.svg" alt="Search clear" class="search-clear js-search-clear d-none">
    </div>
    <button type="reset" name="reset-button" class="reset-button d-flex" aria-label="Clear search keywords">
      <p class="d-none d-lg-block">Cancel</p>
      <img class="d-block" alt="" src="/on/demandware.static/Sites-PT-Site/-/default/dw555aee1e/images/close-new.svg">
    </button>
  </div>
  <div class="suggestions-wrapper result-container" data-url="/on/demandware.store/Sites-PT-Site/en_ZA/SearchServices-GetSuggestions?q=" data-mintermlength="1">
    <div class="first-result">
      <div class="trending-container">
        <h4 class="suggestion-title">Trending searches</h4>
        <div id="popularSuggestions">
        </div>
      </div>
      <div class="popular-container w-100">
        <h4 class="suggestion-title">Popular products</h4>
        <div class="recommendations recommendations--search px-0">
          <!-- =============== This snippet of JavaScript handles fetching the dynamic recommendations from the remote recommendations server
and then makes a call to render the configured template with the returned recommended products: ================= -->
          <script>
            (function() {
              // window.CQuotient is provided on the page by the Analytics code:
              var cq = window.CQuotient;
              if (cq && ('function' == typeof cq.getCQUserId) && ('function' == typeof cq.getCQCookieId) && ('function' == typeof cq.getCQHashedEmail) && ('function' == typeof cq.getCQHashedLogin)) {
                var recommender = '[[&quot;PT-MOST-POPULAR&quot;]]';
                // removing any leading/trailing square brackets and escaped quotes:
                recommender = recommender.replace(/\[|\]|&quot;/g, '');
                var separator = '|||';
                var slotConfigurationUUID = '0f0d5ae29e85faa03b880db011';
                var contextAUID = '';
                var contextSecondaryAUID = '';
                var contextAltAUID = '';
                var contextType = '';
                var anchorsArray = [];
                var contextAUIDs = contextAUID.split(separator);
                var contextSecondaryAUIDs = contextSecondaryAUID.split(separator);
                var contextAltAUIDs = contextAltAUID.split(separator);
                var contextTypes = contextType.split(separator);
                var slotName = 'search-new-recommendations';
                var slotConfigId = 'PT-SEARCH-NEW';
                var slotConfigTemplate = 'slots/recommendation/searchCarousel.isml';
                if (contextAUIDs.length == contextSecondaryAUIDs.length) {
                  for (i = 0; i < contextAUIDs.length; i++) {
                    anchorsArray.push({
                      id: contextAUIDs[i],
                      sku: contextSecondaryAUIDs[i],
                      type: contextTypes[i],
                      alt_id: contextAltAUIDs[i]
                    });
                  }
                } else {
                  anchorsArray = [{
                    id: contextAUID,
                    sku: contextSecondaryAUID,
                    type: contextType,
                    alt_id: contextAltAUID
                  }];
                }
                var urlToCall = '/on/demandware.store/Sites-PT-Site/en_ZA/CQRecomm-Start';
                var params = {
                  userId: cq.getCQUserId(),
                  cookieId: cq.getCQCookieId(),
                  emailId: cq.getCQHashedEmail(),
                  loginId: cq.getCQHashedLogin(),
                  anchors: anchorsArray,
                  slotId: slotName,
                  slotConfigId: slotConfigId,
                  slotConfigTemplate: slotConfigTemplate,
                  ccver: '1.03'
                };
                if (cq.getRecs) {
                  cq.getRecs(cq.clientId, recommender, params, cb);
                } else {
                  cq.widgets = cq.widgets || [];
                  cq.widgets.push({
                    recommenderName: recommender,
                    parameters: params,
                    callback: cb
                  });
                }
              };

              function cb(parsed) {
                var arr = parsed[recommender].recs;
                if (arr && 0 < arr.length) {
                  var filteredProductIds = '';
                  for (i = 0; i < arr.length; i++) {
                    filteredProductIds = filteredProductIds + 'pid' + i + '=' + encodeURIComponent(arr[i].id) + '&';
                  }
                  filteredProductIds = filteredProductIds.substring(0, filteredProductIds.length - 1); //to remove the trailing '&'
                  var formData = 'auid=' + encodeURIComponent(contextAUID) + '&scid=' + slotConfigurationUUID + '&' + filteredProductIds;
                  var request = new XMLHttpRequest();
                  request.open('POST', urlToCall, true);
                  request.setRequestHeader('Content-type', 'application/x-www-form-urlencoded');
                  request.onreadystatechange = function() {
                    if (this.readyState === 4) {
                      // Got the product data from DW, showing the products now by changing the inner HTML of the DIV:
                      var divId = 'cq_recomm_slot-' + slotConfigurationUUID;
                      document.getElementById(divId).innerHTML = this.responseText;
                      //find and evaluate scripts in response:
                      var scripts = document.getElementById(divId).getElementsByTagName('script');
                      if (null != scripts) {
                        for (var i = 0; i < scripts.length; i++) { //not combining script snippets on purpose
                          var srcScript = document.createElement('script');
                          srcScript.text = scripts[i].innerHTML;
                          srcScript.asynch = scripts[i].asynch;
                          srcScript.defer = scripts[i].defer;
                          srcScript.type = scripts[i].type;
                          srcScript.charset = scripts[i].charset;
                          document.head.appendChild(srcScript);
                          document.head.removeChild(srcScript);
                        }
                      }
                    }
                  };
                  request.send(formData);
                  request = null;
                }
              };
            })();
          </script>
          <!-- The DIV tag id below is unique on purpose in case there are multiple recommendation slots on the same .isml page: -->
          <div id="cq_recomm_slot-0f0d5ae29e85faa03b880db011">
            <div class="col p-0 recommendation-col">
              <div class="items" data-gtm-list-type="empty">
                <!-- CQuotient Activity Tracking (viewReco-cquotient.js) -->
                <script type="text/javascript">
                  //<!--
                  /* <![CDATA[ */
                  (function() {
                    try {
                      if (window.CQuotient) {
                        var cq_params = {};
                        cq_params.cookieId = window.CQuotient.getCQCookieId();
                        cq_params.userId = window.CQuotient.getCQUserId();
                        cq_params.emailId = CQuotient.getCQHashedEmail();
                        cq_params.loginId = CQuotient.getCQHashedLogin();
                        cq_params.accumulate = true;
                        cq_params.products = [{
                          id: '103840430',
                          sku: '',
                          type: 'vgroup',
                          alt_id: '103840430-C09'
                        }];
                        cq_params.recommenderName = 'PT-MOST-POPULAR';
                        cq_params.realm = "BDJC";
                        cq_params.siteId = "PT";
                        cq_params.instanceType = "prd";
                        cq_params.locale = window.CQuotient.locale;
                        cq_params.slotId = 'search-new-recommendations';
                        cq_params.slotConfigId = 'PT-SEARCH-NEW';
                        cq_params.slotConfigTemplate = 'slots\/recommendation\/searchCarousel.isml';
                        if (window.CQuotient.sendActivity) window.CQuotient.sendActivity(CQuotient.clientId, 'viewReco', cq_params);
                        else window.CQuotient.activities.push({
                          activityType: 'viewReco',
                          parameters: cq_params
                        });
                      }
                    } catch (err) {}
                  })();
                  /* ]]> */
                  // -->
                </script>
                <script type="text/javascript">
                  //<!--
                  /* <![CDATA[ (viewProduct-active_data.js) */
                  dw.ac._capture({
                    id: "103840430-C09",
                    type: "recommendation"
                  });
                  /* ]]> */
                  // -->
                </script>
                <div data-pid="103840430-C09">
                  <div id="103840430-C09" class="product-tile js-product-tile" data-tracked="false" data-index="0"
                    data-gtm-impression="{&quot;id&quot;:&quot;103840430-c09&quot;,&quot;name&quot;:&quot;dayanara schiffli dress&quot;,&quot;category&quot;:&quot;fit &amp; flare dresses&quot;,&quot;brand&quot;:&quot;Poetry&quot;,&quot;price&quot;:&quot;399.20&quot;,&quot;dimension5&quot;:&quot;white&quot;}"
                    data-gtm="{&quot;event&quot;:&quot;productClick&quot;,&quot;ecommerce&quot;:{&quot;click&quot;:{&quot;actionField&quot;:{&quot;list&quot;:&quot;&quot;},&quot;products&quot;:[{&quot;id&quot;:&quot;103840430-c09&quot;,&quot;name&quot;:&quot;dayanara schiffli dress&quot;,&quot;category&quot;:&quot;fit &amp; flare dresses&quot;,&quot;brand&quot;:&quot;Poetry&quot;,&quot;price&quot;:&quot;399.20&quot;,&quot;dimension5&quot;:&quot;white&quot;}]}}}">
                    <!-- dwMarker="product" dwContentID="964c0a4e59848becbb49bd99a9" -->
                    <div class="image-container">
                      <a href="/products/dayanara-schiffli-dress/103840430-C09.html" data-gtm="{&quot;event&quot;:&quot;productClick&quot;,&quot;ecommerce&quot;:{&quot;click&quot;:{&quot;actionField&quot;:{&quot;list&quot;:&quot;&quot;},&quot;products&quot;:[{&quot;id&quot;:&quot;103840430-c09&quot;,&quot;name&quot;:&quot;dayanara schiffli dress&quot;,&quot;category&quot;:&quot;fit &amp; flare dresses&quot;,&quot;brand&quot;:&quot;Poetry&quot;,&quot;price&quot;:&quot;399.20&quot;,&quot;dimension5&quot;:&quot;white&quot;}]}}}">


                <img class="tile-image lazyload" data-src="https://media.capeunionmart.co.za/i/capeunionmart/103840430_C09_1?$large$" alt="Dayanara Schiffli Dress" title="Dayanara Schiffli Dress -  White">
            
                <img class="tile-image lazyload" data-src="https://media.capeunionmart.co.za/i/capeunionmart/103840430_C09_2?$large$" alt="Dayanara Schiffli Dress" title="Dayanara Schiffli Dress -  White">
            
        
    </a>
                    </div>
                    <div class="promo-labels">
                      <div class="product-promo-sale">
                        <span>
                          <img class="lazyload" data-src="/on/demandware.static/-/Sites/default/dw213a8126/poetry/labels/Potery_Sale.png">
                        </span>
                      </div>
                    </div>
                    <div class="tile-body">
                      <div class="pdp-link">
                        <a class="link" href="/products/dayanara-schiffli-dress/103840430-C09.html" itemprop="url" data-gtm="{&quot;event&quot;:&quot;productClick&quot;,&quot;ecommerce&quot;:{&quot;click&quot;:{&quot;actionField&quot;:{&quot;list&quot;:&quot;&quot;},&quot;products&quot;:[{&quot;id&quot;:&quot;103840430-c09&quot;,&quot;name&quot;:&quot;dayanara schiffli dress&quot;,&quot;category&quot;:&quot;fit &amp; flare dresses&quot;,&quot;brand&quot;:&quot;Poetry&quot;,&quot;price&quot;:&quot;399.20&quot;,&quot;dimension5&quot;:&quot;white&quot;}]}}}">Dayanara Schiffli Dress</a>
                      </div>
                      <div class="js-turnto-reviews"></div>
                      <!-- Prices -->
                      <div class="tile-price py-md-1">
                        <span class="d-inline-block">
                          <div class="price pdp_default_price">
                            <span class="list ">
                              <span class="value strike-through"> R1,399.00 </span>
                            </span>
                            <span class="sales">
                              <span class="value" content="399.20"> R399.20 </span>
                            </span>
                          </div>
                        </span>
                      </div>
                      <div class="promotions-details">
                      </div>
                      <div class="row tile-body-footer flex-column-reverse align-items-center">
                        <div class="ratings col-xs-12 text-center d-block">
                          <div id="tt-teaser-icons" style="display:none;" width="0" height="0">
                            <svg xmlns="​http://www.w3.org/2000/svg​" xmlns:xlink="http://www.w3.org/1999/xlink">
                              <symbol id="tt-teaser-star--empty" viewBox="0 0 24 24">
                                <path d="M12 18l-6.4 3.88 1.73-7.33-5.66-4.93L9.09 9 12 2.09 14.91 9l7.42.64-5.63 5 1.72 7.34z" fill="none" xmlns="http://www.w3.org/2000/svg"></path>
                              </symbol>
                              <symbol id="tt-teaser-star--full" viewBox="0 0 24 24">
                                <path d="M12 18.66l-7.44 4.35 1.98-8.16L0 9.36l8.62-.7L12 .99l3.38 7.67 8.62.7-6.54 5.49 1.98 8.16L12 18.66z" xmlns="http://www.w3.org/2000/svg"></path>
                              </symbol>
                              <symbol id="tt-teaser-star--half" viewBox="0 0 24 24">
                                <path fill="currentColor" d="M12 2.09L9.09 9l-7.42.62 5.66 4.93-1.72 7.32 1.07-.65L12 17.97V2.09z" xmlns="http://www.w3.org/2000/svg"></path>
                                <path d="M12 2.09L14.91 9l7.42.62-5.66 4.93 1.72 7.32-1.07-.65L12 17.97V2.09z"></path>
                              </symbol>
                            </svg>
                          </div>
                          <div id="tt-103840430-C09" class="js-tile-review js-initialize TTteaser" data-productid="103840430-C09" data-starrating="0.0">
                          </div>
                        </div>
                      </div>
                    </div>
                    <!-- END_dwmarker -->
                  </div>
                </div>
                <!-- CQuotient Activity Tracking (viewReco-cquotient.js) -->
                <script type="text/javascript">
                  //<!--
                  /* <![CDATA[ */
                  (function() {
                    try {
                      if (window.CQuotient) {
                        var cq_params = {};
                        cq_params.cookieId = window.CQuotient.getCQCookieId();
                        cq_params.userId = window.CQuotient.getCQUserId();
                        cq_params.emailId = CQuotient.getCQHashedEmail();
                        cq_params.loginId = CQuotient.getCQHashedLogin();
                        cq_params.accumulate = true;
                        cq_params.products = [{
                          id: '104385467',
                          sku: '',
                          type: 'vgroup',
                          alt_id: '104385467-C94'
                        }];
                        cq_params.recommenderName = 'PT-MOST-POPULAR';
                        cq_params.realm = "BDJC";
                        cq_params.siteId = "PT";
                        cq_params.instanceType = "prd";
                        cq_params.locale = window.CQuotient.locale;
                        cq_params.slotId = 'search-new-recommendations';
                        cq_params.slotConfigId = 'PT-SEARCH-NEW';
                        cq_params.slotConfigTemplate = 'slots\/recommendation\/searchCarousel.isml';
                        if (window.CQuotient.sendActivity) window.CQuotient.sendActivity(CQuotient.clientId, 'viewReco', cq_params);
                        else window.CQuotient.activities.push({
                          activityType: 'viewReco',
                          parameters: cq_params
                        });
                      }
                    } catch (err) {}
                  })();
                  /* ]]> */
                  // -->
                </script>
                <script type="text/javascript">
                  //<!--
                  /* <![CDATA[ (viewProduct-active_data.js) */
                  dw.ac._capture({
                    id: "104385467-C94",
                    type: "recommendation"
                  });
                  /* ]]> */
                  // -->
                </script>
                <div data-pid="104385467-C94">
                  <div id="104385467-C94" class="product-tile js-product-tile" data-tracked="false" data-index="0"
                    data-gtm-impression="{&quot;id&quot;:&quot;104385467-c94&quot;,&quot;name&quot;:&quot;lara strappy dress&quot;,&quot;category&quot;:&quot;fit &amp; flare dresses&quot;,&quot;brand&quot;:&quot;Poetry&quot;,&quot;price&quot;:&quot;639.20&quot;,&quot;dimension5&quot;:&quot;orange&quot;}"
                    data-gtm="{&quot;event&quot;:&quot;productClick&quot;,&quot;ecommerce&quot;:{&quot;click&quot;:{&quot;actionField&quot;:{&quot;list&quot;:&quot;&quot;},&quot;products&quot;:[{&quot;id&quot;:&quot;104385467-c94&quot;,&quot;name&quot;:&quot;lara strappy dress&quot;,&quot;category&quot;:&quot;fit &amp; flare dresses&quot;,&quot;brand&quot;:&quot;Poetry&quot;,&quot;price&quot;:&quot;639.20&quot;,&quot;dimension5&quot;:&quot;orange&quot;}]}}}">
                    <!-- dwMarker="product" dwContentID="f5485ca27379575f857406b35b" -->
                    <div class="image-container">
                      <a href="/products/lara-strappy-dress/104385467-C94.html" data-gtm="{&quot;event&quot;:&quot;productClick&quot;,&quot;ecommerce&quot;:{&quot;click&quot;:{&quot;actionField&quot;:{&quot;list&quot;:&quot;&quot;},&quot;products&quot;:[{&quot;id&quot;:&quot;104385467-c94&quot;,&quot;name&quot;:&quot;lara strappy dress&quot;,&quot;category&quot;:&quot;fit &amp; flare dresses&quot;,&quot;brand&quot;:&quot;Poetry&quot;,&quot;price&quot;:&quot;639.20&quot;,&quot;dimension5&quot;:&quot;orange&quot;}]}}}">


                <img class="tile-image lazyload" data-src="https://media.capeunionmart.co.za/i/capeunionmart/104385467_C94_1?$large$" alt="Lara Strappy Dress" title="Lara Strappy Dress -  Orange">
            
                <img class="tile-image lazyload" data-src="https://media.capeunionmart.co.za/i/capeunionmart/104385467_C94_2?$large$" alt="Lara Strappy Dress" title="Lara Strappy Dress -  Orange">
            
        
    </a>
                    </div>
                    <div class="promo-labels">
                      <div class="product-promo-sale">
                        <span>
                          <img class="lazyload" data-src="/on/demandware.static/-/Sites/default/dw213a8126/poetry/labels/Potery_Sale.png">
                        </span>
                      </div>
                    </div>
                    <div class="tile-body">
                      <div class="pdp-link">
                        <a class="link" href="/products/lara-strappy-dress/104385467-C94.html" itemprop="url" data-gtm="{&quot;event&quot;:&quot;productClick&quot;,&quot;ecommerce&quot;:{&quot;click&quot;:{&quot;actionField&quot;:{&quot;list&quot;:&quot;&quot;},&quot;products&quot;:[{&quot;id&quot;:&quot;104385467-c94&quot;,&quot;name&quot;:&quot;lara strappy dress&quot;,&quot;category&quot;:&quot;fit &amp; flare dresses&quot;,&quot;brand&quot;:&quot;Poetry&quot;,&quot;price&quot;:&quot;639.20&quot;,&quot;dimension5&quot;:&quot;orange&quot;}]}}}">Lara Strappy Dress</a>
                      </div>
                      <div class="js-turnto-reviews"></div>
                      <!-- Prices -->
                      <div class="tile-price py-md-1">
                        <span class="d-inline-block">
                          <div class="price pdp_default_price">
                            <span class="list ">
                              <span class="value strike-through"> R1,499.00 </span>
                            </span>
                            <span class="sales">
                              <span class="value" content="639.20"> R639.20 </span>
                            </span>
                          </div>
                        </span>
                      </div>
                      <div class="promotions-details">
                      </div>
                      <div class="row tile-body-footer flex-column-reverse align-items-center">
                        <div class="ratings col-xs-12 text-center d-block">
                          <div id="tt-teaser-icons" style="display:none;" width="0" height="0">
                            <svg xmlns="​http://www.w3.org/2000/svg​" xmlns:xlink="http://www.w3.org/1999/xlink">
                              <symbol id="tt-teaser-star--empty" viewBox="0 0 24 24">
                                <path d="M12 18l-6.4 3.88 1.73-7.33-5.66-4.93L9.09 9 12 2.09 14.91 9l7.42.64-5.63 5 1.72 7.34z" fill="none" xmlns="http://www.w3.org/2000/svg"></path>
                              </symbol>
                              <symbol id="tt-teaser-star--full" viewBox="0 0 24 24">
                                <path d="M12 18.66l-7.44 4.35 1.98-8.16L0 9.36l8.62-.7L12 .99l3.38 7.67 8.62.7-6.54 5.49 1.98 8.16L12 18.66z" xmlns="http://www.w3.org/2000/svg"></path>
                              </symbol>
                              <symbol id="tt-teaser-star--half" viewBox="0 0 24 24">
                                <path fill="currentColor" d="M12 2.09L9.09 9l-7.42.62 5.66 4.93-1.72 7.32 1.07-.65L12 17.97V2.09z" xmlns="http://www.w3.org/2000/svg"></path>
                                <path d="M12 2.09L14.91 9l7.42.62-5.66 4.93 1.72 7.32-1.07-.65L12 17.97V2.09z"></path>
                              </symbol>
                            </svg>
                          </div>
                          <div id="tt-104385467-C94" class="js-tile-review js-initialize TTteaser" data-productid="104385467-C94" data-starrating="0.0">
                          </div>
                        </div>
                      </div>
                    </div>
                    <!-- END_dwmarker -->
                  </div>
                </div>
              </div>
            </div>
          </div>
          <!-- ====================== snippet ends here ======================== -->
          <span class="recommendations-loader"></span>
        </div>
      </div>
    </div>
  </div>
  <input type="hidden" value="en_ZA" name="lang">
</form>

Name: dwfrm_newsLetterPOST /on/demandware.store/Sites-PT-Site/en_ZA/Account-NewsLetterSubscribe

<form id="footer-newsletter-signup" action="/on/demandware.store/Sites-PT-Site/en_ZA/Account-NewsLetterSubscribe" method="POST" name="dwfrm_newsLetter" data-cookie="1.0" data-url="/on/demandware.store/Sites-PT-Site/en_ZA/Account-NewsLetterSubscribe">
  <div class="row align-items-center justify-content-center">
    <h2 class="col-12 col-lg-auto mb-0">Let's stay in touch! Subscribe to our newsletter</h2>
    <div class="col-12 col-lg-2 d-lg-flex mt-2 mt-lg-0">
      <button class="btn btn-secondary btn-block" type="button" data-toggle="modal" data-target="#newsletterSignup">Subscribe</button>
    </div>
  </div>
</form>

<form id="footer-newsletter-signup-popup" class="col-12 col-lg-10">
  <div class="row">
    <h2 class="col-12 ">Let's stay in touch, subscribe to our newsletter and you'll receive a R100* online voucher</h2>
    <div class="col-12 my-4">
      <div class="textfield form-group col-lg-10 p-0 m-0">
        <input type="text" class="form-control d-block" name="dwfrm_newsLetter_firstName" id="firstName" placeholder="Please enter your first name" value="" required="" maxlength="40">
      </div>
      <div class="textfield form-group col-lg-10 p-0 my-1">
        <input type="text" class="form-control d-block" name="dwfrm_newsLetter_lastName" id="lastName" placeholder="Please enter your last name" value="" required="" maxlength="40">
      </div>
      <div class="textfield form-group col-lg-10 p-0 my-1">
        <div class="select d-block" data-select="">
          <button class="select-toggle text-left"> South Africa +27 </button>
          <select id="mobilePhoneCountryCode" name="dwfrm_newsLetter_mobilePhoneCountryCode" autocomplete="tel-country-code" required="">
            <option id="+27" value="+27" selected="">South Africa +27</option>
            <option id="+43" value="+43">Austria +43</option>
            <option id="+32" value="+32">Belgium +32</option>
            <option id="+1" value="+1">Canada +1</option>
            <option id="+358" value="+358">Finland +358</option>
            <option id="+972" value="+972">Israel +972</option>
            <option id="+230" value="+230">Mauritius +230</option>
            <option id="+31" value="+31">Netherlands +31</option>
            <option id="+40" value="+40">Romania +40</option>
            <option id="+971" value="+971">United Arab Emirates +971</option>
            <option id="+260" value="+260">Zambia +260</option>
          </select>
          <div class="select-menu">
            <a class="select-item active pl-1" href="" data-value="+27">South Africa
                                                    +27</a>
            <a class="select-item  pl-1" href="" data-value="+43">Austria +43</a>
            <a class="select-item  pl-1" href="" data-value="+32">Belgium +32</a>
            <a class="select-item  pl-1" href="" data-value="+1">Canada +1</a>
            <a class="select-item  pl-1" href="" data-value="+358">Finland +358</a>
            <a class="select-item  pl-1" href="" data-value="+972">Israel +972</a>
            <a class="select-item  pl-1" href="" data-value="+230">Mauritius
                                                    +230</a>
            <a class="select-item  pl-1" href="" data-value="+31">Netherlands
                                                    +31</a>
            <a class="select-item  pl-1" href="" data-value="+40">Romania +40</a>
            <a class="select-item  pl-1" href="" data-value="+971">United Arab
                                                    Emirates +971</a>
            <a class="select-item  pl-1" href="" data-value="+260">Zambia +260</a>
          </div>
          <div class="invalid-feedback"></div>
        </div>
      </div>
      <div class="textfield form-group col-lg-10 p-0 my-1">
        <input type="tel" class="form-control d-block" id="phoneMobile" name="dwfrm_newsLetter_phoneMobile" minlength="10" placeholder="Please enter your 10 digit mobile phone number" value="" required="" maxlength="10">
      </div>
      <div class="textfield form-group col-lg-10 p-0 my-1">
        <input type="email" class="form-control d-block" id="email" name="dwfrm_newsLetter_email" minlength="5" placeholder="Enter your email address here" value="" required="" maxlength="50" pattern="^[\w.%+-]+@[\w.-]+\.[\w]{2,6}$">
      </div>
      <div class="textfield form-group col-lg-10  p-0 my-1">
        <input type="email" class="form-control d-block" id="email-confirm" name="dwfrm_newsLetter_email_confirm" minlength="5" placeholder="Confirm your email address here" value="" required="" maxlength="50"
          pattern="^[\w.%+-]+@[\w.-]+\.[\w]{2,6}$">
      </div>
      <div class="form-group d-none">
        <div class="checkbox d-inline-block">
          <input type="checkbox" class="custom-control-input" id="newsletter-checkbox" name="dwfrm_newsLetter_signup_check" checked="">
          <label for="signup-newsletter-checkbox">Sign up for the newsletter</label>
        </div>
      </div>
      <p class="error-newsletter-form-message text-dange" data-email-error="Email confirmation does not match" data-checkbox-error="Sign up for newsletter unchecked"></p>
      <button class="btn btn-secondary mt-1 submit" type="submit"> Subscribe </button>
    </div>
  </div>
  <p class="m-0">If you change your mind, you can unsubscribe at any time.</p>
  <p class="m-0">*Vouchers only valid for first time subscriber.</p>
</form>

POST

<form id="fileUploadForm" enctype="multipart/form-data" method="post" target="fileUploadIframe"><input type="file" id="fileSelector" name="file" style="display: none;"><input name="filename" type="hidden"></form>

Text Content

TAKE AN EXTRA 20% OFF SALE ITEMS!

HURRY, LIMITED TIME ONLY.

Free standard delivery & free returns on orders over R500.

×

Cancel

TRENDING SEARCHES



POPULAR PRODUCTS

Dayanara Schiffli Dress

R1,399.00 R399.20


Lara Strappy Dress

R1,499.00 R639.20




0

Menu
Back

 * Sale
   * Clothing
   * Shoes
   * Accessories
   * 
 * New In
   * Clothing
   * Shoes
   * Accessories
   * 
 * Clothing
   * Dresses & Jumpsuits
   * Matching Sets
   * Swim
   * Tops
     * Blouses & Shirts
     * T-Shirts & Vests
     * Knitwear & Sweats
   * Bottoms
     * Pants
     * Denim
     * Skirts
     * Shorts
   * Sleep
     * Sleepwear
     * Gowns
     * Intimates
   * Jackets & Coats
     * Casual Jackets
     * Kimonos & Ponchos
     * Blazers
     * Coats & Parkas
     * Puffer & Down Jackets
   * Offers
     * Buy 2 & Get R150 Off Selected Basic Tees
   * 
 * Shoes
   * Sandals
   * Heels
   * Sneakers
   * Flats
   * Boots
   * Slippers
   * 
 * Accessories
   * Bags, Wallets & Belts
     * Handbags
     * Wallets & Pouches
     * Belts
     * Jewellery Boxes & Cosmetics Bags
     * Travel Bags
     * Backpack & Laptop Bags
   * Jewellery
     * Bracelets
     * Earrings
     * Necklaces
     * Rings
   * Headwear & Hair
     * Hats
     * Headbands
     * Hair Ties, Clips & Sliders
   * Scarves
   * Sunglasses
   * Breast Tape
   * 
 * Occasion Edit
 * Gift Cards
 * Featured
   * Shops
     * Gift Hampers
     * Linen Loving
     * Prints & Patterns
   * 
 * Offers
   * Always-On Deals
     * Buy 2 & Get R150 Off Selected Basic Tees
   * 
 * Login
 * Wishlist
 * Store Locator
 * Contact Us


WE VALUE YOUR PRIVACY

We have placed cookies on your device to help make this website work best.
I'm fine with this


CLOTHING SHOES ACCESSORIES HOMEWARE



Previous


BUY 2 & GET 20% OFF SELECTED BATH TOWELS & BATH MATS

 * SHOP NOW


BUY 3 & GET 1 FREE ON SELECTED CERAMICS

 * SHOP NOW


BUY 2 & TAKE R150 OFF SELECTED TEES

 * SHOP NOW


BUY 3 & GET 1 FREE ON SELECTED GLASSWARE

 * SHOP NOW


BUY 2 & GET 20% OFF SELECTED BATH TOWELS & BATH MATS

 * SHOP NOW


BUY 3 & GET 1 FREE ON SELECTED CERAMICS

 * SHOP NOW


BUY 2 & TAKE R150 OFF SELECTED TEES

 * SHOP NOW


BUY 3 & GET 1 FREE ON SELECTED GLASSWARE

 * SHOP NOW


BUY 2 & GET 20% OFF SELECTED BATH TOWELS & BATH MATS

 * SHOP NOW


BUY 3 & GET 1 FREE ON SELECTED CERAMICS

 * SHOP NOW

Next
 * 1
 * 2

In With The New

Shop our range of bold, new accessories that'll inject style and personality
into your looks.

Previous
Quick View

Black Betty Double Strand Knot Ring

null R999.00

GOLD PLATED 925 SILVER


Quick View

Jayla Aliceband

null R179.00


Quick View

Laila Abstract Silk Scarf

null R499.00


Quick View

Cat Eye Tortoiseshell Polarised Sunglasses

null R499.00


Quick View

Twisted Disk Earrings

null R129.00


Quick View

Rope and Interest Chain Necklace Pack

null R279.00


Quick View

Marcelle Embroidered Kimono

null R1,199.00


Quick View

Texture and Chain Statement Bracelet

null R249.00


Quick View

Twisted Epoxy Hoop Earrings

null R149.00


Quick View

Lexie Plaited Shopper Bag

null R2,499.00


Quick View

Resin Inlay Hoop Earrings

null R149.00


Quick View

Essie Mini Leather Crossbody Bag

null R1,199.00


Quick View

Shion Metal Keeper Belt

null R329.00


Quick View

Resin Two-Tone Halo Hoop Earrings

null R149.00


Quick View

Giselle Colourblock Cardholder

null R299.00


Quick View

Black Betty Double Strand Knot Ring

null R999.00

GOLD PLATED 925 SILVER


Quick View

Jayla Aliceband

null R179.00


Quick View

Laila Abstract Silk Scarf

null R499.00


Quick View

Cat Eye Tortoiseshell Polarised Sunglasses

null R499.00


Quick View

Twisted Disk Earrings

null R129.00


Quick View

Rope and Interest Chain Necklace Pack

null R279.00


Quick View

Marcelle Embroidered Kimono

null R1,199.00


Quick View

Texture and Chain Statement Bracelet

null R249.00


Quick View

Twisted Epoxy Hoop Earrings

null R149.00


Quick View

Lexie Plaited Shopper Bag

null R2,499.00


Quick View

Resin Inlay Hoop Earrings

null R149.00


Quick View

Essie Mini Leather Crossbody Bag

null R1,199.00


Quick View

Shion Metal Keeper Belt

null R329.00


Quick View

Resin Two-Tone Halo Hoop Earrings

null R149.00


Quick View

Giselle Colourblock Cardholder

null R299.00


Quick View

Black Betty Double Strand Knot Ring

null R999.00

GOLD PLATED 925 SILVER


Quick View

Jayla Aliceband

null R179.00


Quick View

Laila Abstract Silk Scarf

null R499.00


Quick View

Cat Eye Tortoiseshell Polarised Sunglasses

null R499.00


Quick View

Twisted Disk Earrings

null R129.00


Quick View

Rope and Interest Chain Necklace Pack

null R279.00


Next
 * 1
 * 2
 * 3

SHOP ACCESSORIES


SHOP THE LUXURY YOU'VE COME TO KNOW AT A PRICE YOU'LL LOVE.

 * SHOP LAST CHANCE




REMOVE PRODUCT?

×
Are you sure you want to remove the following product from the bag?



Cancel Yes


LET'S STAY IN TOUCH! SUBSCRIBE TO OUR NEWSLETTER

Subscribe
×


LET'S STAY IN TOUCH, SUBSCRIBE TO OUR NEWSLETTER AND YOU'LL RECEIVE A R100*
ONLINE VOUCHER

South Africa +27 South Africa +27 Austria +43 Belgium +32 Canada +1 Finland +358
Israel +972 Mauritius +230 Netherlands +31 Romania +40 United Arab Emirates +971
Zambia +260
South Africa +27 Austria +43 Belgium +32 Canada +1 Finland +358 Israel +972
Mauritius +230 Netherlands +31 Romania +40 United Arab Emirates +971 Zambia +260




Sign up for the newsletter



Subscribe

If you change your mind, you can unsubscribe at any time.

*Vouchers only valid for first time subscriber.





A WORLD OF REWARDS AWAITS


EARN POINTS & REDEEM VOUCHERS ACROSS ALL OUR BRANDS

LEARN MORE

 * 
 * 
 * 
 * 

ORDER INFORMATION

 * Gift Cards
 * Gift Card Status
 * Track my Order
 * Delivery Options
   
 * Returns & Exchanges
 * Payment Information

COMPANY

 * About Us
 * Cape Union Mart Group
 * Friends & Family Rewards
 * Partner Programs
 * Careers

CONTACT INFORMATION

 * Store Locator
 * Frequently Asked Questions
 * Contact Us

LEGAL

 * Terms & Conditions
 * Website Privacy Policy
 * POPI Privacy Policy
 * PAIA Manual
 * Social Community Guidelines



© 2024 POETRY. ALL RIGHTS RESERVED




×


OUR SALE IS ON SALE!

Shop an additional 20% off our sale items! Go on, treat yourself.

Hurry! Deals are only valid for limited time.

Discount already applied.

SHOP NOW


Live chat:Contact Us