Или это не тот файл? Нашла в интернете вот этот код:
$(function () {
var owl = $('#owl2row-plugin');
owl.owlCarousel({
loop: true,
margin: 20,
nav: false,
owl2row: 'true', // enable plugin
owl2rowTarget: 'item_', // class for items in carousel div
owl2rowContainer: 'owl2row-item', // class for items container
owl2rowDirection: 'ltr', // ltr : directions
responsive: {
0: {
items: 2
},
480: {
items: 2
},
660: {
items: 3
},
960: {
items: 4
}
}
});
$('.item_ a').on('click', function(e){
e.preventDefault();
$('.gallery-item').magnificPopup({
tPrev: 'Previous (Left arrow key)',
tNext: 'Next (Right arrow key)',
type:'inline',
showCloseBtn: true,
gallery:{
enabled:true
}
});
});
});