View Single Post
  #34  
Old 10-26-2016, 08:33 AM
 
PhilJ PhilJ is offline
 

X-Guru
  
Join Date: Nov 2002
Posts: 4,094
 

Default Re: X-Cart - Ultra - Responsive Template

@Steve, in skin/ultra/modules/Banner_System/banner_rotator.tpl

Replace...
Code:
{foreach from=$banners item=banner} {if $banner.content ne ''} {if $banner.nav eq 'Y'}

With...
Code:
{foreach from=$banners item=banner} {if $banner.content ne '' && $banner.content|@count gt 1} {if $banner.nav eq 'Y'}

Then in skin/ultra/js/custom/swipers.js underneath BANNER SYSTEM

Replace...
Code:
autoplay: 3000,

With...
Code:
autoplay: $this.find('.swiper-slide').length > 1 ? 3000 : false,

If need be, do the same for grabCursor and loop...
Code:
grabCursor: $this.find('.swiper-slide').length > 1 ? true : false, loop: $this.find('.swiper-slide').length > 1 ? true : false,
__________________
xcartmods.co.uk
Reply With Quote