We investigate the problem. It occurs because "VC Grid" attaches javascript code to links inside a grid (in your case search results are located in VC Grid). This code loads link into main browser's window when it is clicked, but we also have good news. We updated the plugin and adds ability to execute custom javascript code. It helps to resolve the problem with "VC Grid" code.
Update the plugin to v. 1.6.5, open "Advanced" tab on "ARI Fancy Lightbox -> Settings" page and populate "Custom JS code" parameter with the following value:
Code: |
$(window).on('grid:items:added', function(e, el) {
var $el = $(el);
if (!$el.hasClass('search-filter-results'))
return ;
$el.find('.vc_gitem-link.ari-fancybox,.vc_gitem-link.ari-fancybox-iframe').removeClass('vc_gitem-link');
});
|
After this links from search results should be opened into the lightbox normally.
Regards,
ARI Soft