Pop Theme Integration - ECB

Step 1: Select the placeholder option

  1. Select the last option under the "position" setting in the bar configuration in the App
  2. Check the “Pin the Bar” option
  3. Scrolling to the very end, and click the "Save" button to save the change

Step 2: Add the bar

  1. Go to Admin > Online Store > Themes
  2. Click the "Actions" button on the right-hand side, and select "Edit code"
  3. Find theme.liquid from the left-hand side file list and open it
  4. Find {% section 'header' %}
  5. Add following codes above it and save the changes.
<div id="ecb_placeholder">
  <script>
    var ecb_adjusted = false;
    $( "#ecb_placeholder" ).on( "ecb_fully_loaded", function(event, p1) {
      if ((p1=='inserted' || p1=='inserted_sticky') && !ecb_adjusted ){
        ecb_adjusted = true;
        if(p1=='inserted_sticky') {
          var ecb_height = $("#ecb_background").height();
          var page_wrapper_top = parseInt($(".page-wrapper").css('top'));
          var total_height = page_wrapper_top + ecb_height;
          $("<div />", {html: '<style>' + '#ecb_placeholder{padding-bottom:0 !important;}#ecb_background{top:0;}@media screen and (max-width: 1024px){.site-header,.nav-mobile,.ajaxify-drawer{top:' + ecb_height + 'px!important;}.page-wrapper{top:' + total_height + 'px;}' + '</style>'}).appendTo("body");
        }
      }
      $("#ecb_close").on( "click", function(){
$("<div />", {html: '<style>' + '.page-wrapper{top:' + page_wrapper_top + 'px;}.site-header{padding-top:30px;}@media screen and (max-width: 1024px){.site-header,.nav-mobile,.ajaxify-drawer{padding-top:0;top:0!important;}}' + '</style>'}).appendTo("body");
      });
    });
  </script>
</div>

Enjoy the app

Congratulations. You successfully integrate the Email Collection Bar with your Pop theme.
If you cannot see the Email Collection Bar yet. Please double check Step 1 and make sure you save the settings.