Guest User

Untitled

a guest
Nov 23rd, 2017
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.09 KB | None | 0 0
  1. <div id="custom-popup-modal">
  2. <div class="col-sm-6">
  3. <div class="static_content">
  4. <h5 class="min-title">JOIN THE PARTY</h5>
  5. <h2 class="min-title">GET 15% OFF YOUR FIRST ORDER*</h2>
  6. <p class="content">Subscribers only discounts, first look at new products, and cutting-edges tips</p>
  7. <?php echo $newsletterHtml; ?>
  8. <p class="micro-text">*Promo code will be emailed to the address you enter, New subscribers only</p>
  9. </div>
  10. </div>
  11. <div class="col-sm-6 img-section">
  12. <img src='<?php echo $this->getUrl('pub/media/').'cms/image-email.gif'; ?>' />
  13. </div>
  14. </div>
  15.  
  16. <script type="text/javascript" xml="space">
  17.  
  18. require(['jquery','Magento_Ui/js/modal/modal'],
  19.  
  20. function($,modal) {
  21.  
  22. var options = {
  23. type: 'popup',
  24. responsive: true,
  25. };
  26.  
  27. var popup = modal(options, $('#custom-popup-modal'));
  28. $( document ).ready(function() {
  29. $('#custom-popup-modal').modal('openModal');
  30. });
  31. }
  32. );
  33.  
  34. </script>
Add Comment
Please, Sign In to add comment