Hello,
This is Definitely Possible but the JS Codes will need some customizations. Consider using the following code instead replacing the Old JS Codes that handles this:
// Topbar Hide
jQuery(window).on('pluginCookieReady', function(){
if( Cookies.get('topBarClosed') == 'yes' ) {
jQuery('#top-bar').hide();
}
});
jQuery('#top-bar').on('click','#close-bar',function(){
jQuery(this).parents('#top-bar').slideUp(300, function(){
Cookies.set('topBarClosed', 'yes', { expires: 14 });
});
jQuery('body').css('padding-top',0);
});
This will definitely work fine. Hope this Helps!
Let us know if we can help you with anything else or if you find any further issues.