@Sarzzer
Go to file:
oc-content/themes/zara/js/global.js
Find code:
// FANCYBOX - SUBCATEGORY OPEN ON HOMEPAGE
$(document).on('click', '.open-home-cat', function(e){
e.preventDefault();
if (!!$.prototype.fancybox) {
$.fancybox({
'padding': 0,
'width': 640,
'height': 320,
'autoSize': false,
'autoDimensions': false,
'wrapCSS': 'home-cat',
'content': '<div class="cat-tab">' + $('#ct' + $(this).attr('rel')).html() + '</div>'
});
}
});
and remove/comment it.