Reply To: Combine Instagram Feed with Masonry

#10044678
Support
Keymaster

Hello, try to add this on js/custom.js:

$('.instagram-feed').addClass('portfolio-list');

if( $('.instagram-feed').length ) {
	setInterval(function () {
		try {
			$('.instagram-feed').isotope('layout');
		} catch (err) {}
	}, 1000);
}