Hi,
I have been trying everything to make the cart working. Add to cart works fine from Items, but when I click the cart Icon (k2 cart module on cart position) nothing happens. Why can't I see the conent of the cart? Thanks! Christian
jQuery('#btnCart').click(function(){
jQuery('#gkPopupLogin').css({'display': 'block', 'opacity': 0, 'height' : 0});
jQuery('#gkPopupRegister').css({'display': 'block', 'opacity': 0, 'height' : 0});
jQuery('#gkPopupCart').css('display','block');
jQuery('#gkPopupOverlay').css('display','block');
});
jQuery('#gkPopupOverlay').click(function(){
jQuery('#gkPopupLogin').css({'display': 'block', 'opacity': 0, 'height' : 0});
jQuery('#gkPopupRegister').css({'display': 'block', 'opacity': 0, 'height' : 0});
jQuery('#gkPopupCart').css('display','none');
jQuery('#gkPopupOverlay').css('display','none');
});