Hi,
I right see the javascript code in your page just after you add something in the cart
window.hikashop.ready( function() {
SqueezeBox.fromElement('hikashop_notice_box_trigger_link',{parse: 'rel'});
});
But I also see a Javascript error
Uncaught TypeError: Cannot read property 'masonry' of undefined
For the code
<script>
jQuery(function($){
var $container = $('#div_hikashop_products').imagesLoaded(function(){
$container.masonry({
itemSelector: '.masonry-style'
});
});
$container.children().each(function(i){
var item = $(this), info = item.find('.info');
item.hover(function(){
item.css('z-index',500-i);
info.stop().slideDown(300);
},function(){
info.stop().slideUp(300,function(){
item.css('z-index','');
});
});
});
});
</script>
which is not from HikaShop.
It looks like the Javascript error of that code stop the rest of the javascript processing and that's why the popup is not opened, because the code is not processed by the browser.
Regards,