Shopify Liquid – Keep Anouncement Bar Closed
I have created a custom Announcement Bar with a Close Button on our Shopify Website. The following script code closes the bar: <script> $( document ).ready(function() { if ($('.announcement-bar').length){ $( '.x' ).click(function() { $(".announcement-bar").remove(); $("body").addClass("no-announcement-bar"); }); } }); </script> Problem…