Issue
- When selecting any sticky position option, the bar covers the website sticky header when scrolling.
- The bar covers the mobile menu.
Notes
- The non sticky option of the app does NOT work for this solution. It has to be sticky.
Solution - 3 steps
Step 1: Select the placeholder option
- Select the last option under the "position" setting in the bar configuration in the App
- Check the “Pin the Bar” option
- Scrolling to the very end, and click the "Save" button to save the change

Step 2: Add Part I
- Go to Admin > Online Store > Themes.
- Click the "Actions" button on the right-hand side, and select "Edit code".
- Find header.liquid from the left-hand side file list and open it.
- At top, add the following code and save the changes.
<div id="qab_placeholder"></div>

Step 3: Add Part II
- Find theme.liquid from the left-hand side file list and open it.
- Find </body>.
- Before it, adding the following code and save the changes.
<script>
var qab_adjusted = false;
$( "#qab_placeholder" ).on( "qab_fully_loaded", function(event, p1) {
if ((p1=='inserted' || p1=='inserted_sticky') && !qab_adjusted ){
qab_adjusted = true;
var qab_height = $("#qab_background").height();
$("<div />", {html: '<style>' + '.nav-sticky{margin-top:' + qab_height + 'px;}#qab_background{z-index:990!important;}' + '</style>'}).appendTo("body");
}
$("#qab_close").on( "click", function(){
$("<div />", {html: '<style>' + '.nav-sticky{margin-top:0;}' + '</style>'}).appendTo("body");
});
});
$("#qab_placeholder").on("qab_fully_unloaded", function(event, p1) {
$("<div />", {html: '<style>' + '.nav-sticky{margin-top:0;}' + '</style>'}).appendTo("body");
});
</script>

Comments
0 comments
Article is closed for comments.