Jump to content

How to display more pics in the top sellers module?


Guest Steven_king

Recommended Posts

Hi,

You have to go in the module folder, blockbestsellers module, and edit the file blockbestsellers.tpl

After you have to add different lign on the TPL. Iff you want 4 pics in the bloc add the code :

getImageLink($best_sellers.2.link_rewrite, $best_sellers.2.id_image, 'medium')}" height="{$mediumSize.height}" width="{$mediumSize.width}" alt="{$best_sellers.2.legend}" />
getImageLink($best_sellers.3.link_rewrite, $best_sellers.3.id_image, 'medium')}" height="{$mediumSize.height}" width="{$mediumSize.width}" alt="{$best_sellers.3.legend}" />



Under :

{if $best_sellers|@count > 1}getImageLink($best_sellers.1.link_rewrite, $best_sellers.1.id_image, 'medium')}" height="{$mediumSize.height}" width="{$mediumSize.width}" alt="{$best_sellers.1.legend}" />{/if} 



I remain at your disposal.

Best Regards Mikaël

Link to comment
Share on other sites

  • 2 weeks later...

Hi Mikaël
I found the above code did not work in version 1.3.1.and found you were missing '{$link->' before the getImageLink function. The code should be.

getImageLink($best_sellers.2.link_rewrite, $best_sellers.2.id_image, 'medium')}" height="{$mediumSize.height}" width="{$mediumSize.width}" alt="{$best_sellers.2.legend}" />
getImageLink($best_sellers.3.link_rewrite, $best_sellers.3.id_image, 'medium')}" height="{$mediumSize.height}" width="{$mediumSize.width}" alt="{$best_sellers.3.legend}" />



I found the best place to insert the code is.

{if $best_sellers|@count > 1}getImageLink($best_sellers.1.link_rewrite, $best_sellers.1.id_image, 'medium')}" height="{$mediumSize.height}" width="{$mediumSize.width}" alt="{$best_sellers.1.legend}" />[iNSERT HERE]{/if} 



Hope this helps
regards
Dean

Link to comment
Share on other sites

Hi Mikaël

Many Thanks for the code it helped me show multiple images in the top sellers module.
It could have been a setting on my server, but to get it to work for me I had to do the above.

Regards
Dean

Link to comment
Share on other sites

×
×
  • Create New...