View Single Post
  #948  
Old 05-07-2015, 06:03 AM
 
PhilJ PhilJ is offline
 

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

Default Re: X-Cart - reBOOT - Responsive Template

Quote:
Is it possible to turn off the lazy loading of product images?
Not advisable, but if you want to, skin/reboot/product_thumbnail.tpl

Replace...

Code:
<img itemprop="image" class="lazy" {if $id ne ''} id="{$id}"{/if} {if !$notlazy} src="{$AltImagesDir}/spacer.gif"{if $image_x ne 0} width="{$image_x}"{/if}{if $image_y ne 0} height="{$image_y}"{/if} data-src="{else}src="{/if}
With...
Code:
<img itemprop="image" {if $id ne ''} id="{$id}"{/if} {if $image_x ne 0} width="{$image_x}" {/if}{if $image_y ne 0} height="{$image_y}" {/if}src="
There'll be lazy loading improvements in v4.
__________________
xcartmods.co.uk
Reply With Quote