jQuery(document).ready(function ($) { 'use strict'; //PORTFOLIO IMAGE LIGHTBOX if (((jQuery('body').hasClass('page-template-vehicles-template-php') || jQuery('body').hasClass('tax-vehicles-category')) && VolcannoConfig.portfolioLightboxCurrent == '1' && VolcannoConfig.portfolioLightboxOptions != 'disabled') ) { jQuery('.triggerZoom').on('click', function (e) { e.preventDefault(); jQuery(this).closest('.gallery-item-container, .gallery-item').find('.gallery').magnificPopup('open'); }); jQuery('.gallery').each(function () { // the containers for all your galleries jQuery(this).magnificPopup({ delegate: 'a', // the selector for gallery item type: 'image', gallery: { enabled: true } }); }); } else { jQuery('.triggerZoom').magnificPopup({ type: 'image', gallery: { enabled: true } }); } $('.triggerZoomVideo').magnificPopup({ type: 'iframe', disableOn: 700, mainClass: 'mfp-fade', removalDelay: 160, preloader: false, fixedContentPos: false }); });