Jump to content

[SOLVED] Limit Best Sellers block


Recommended Posts

HELP!

How do I limit the best sellers block included with Prestashop to only show a certain number of items?

 

I cannot find any configuration in the module. Do I need to add code to the {for each} loop in the tpl file?

 

Thanks

 

Lee

 

UPDATE

 

OK spent some time Googling and came up with this answer:

 

In the blockbestsellers-html.tpl file just after this line (38)

 

{foreach from=$best_sellers item=product name=myLoop}

 

 

insert:

 

{if $product@iteration == 4}

{break}

 

Change the value of the red 4 above to be the number of products you wish to show +1, ie if you want to show 5 products then the value is 6.

 

Hope that helps someone.

Link to comment
Share on other sites

  • 6 months later...
  • 2 weeks later...
  • 5 months later...

if you have prestashop 1.5x you can solve the problem by adding the following line to the blockbestsellers.tpl

 

   {foreach from=$best_sellers item=product name=myLoop}
  {if $smarty.foreach.myLoop.iteration > 3} {break}{/if}

Edited by thomasp (see edit history)
  • Like 1
Link to comment
Share on other sites

ab Version 1.5 löst man das Problem in der blockbestsellers.tpl durch einfügen der folgenden Zeile

 

   {foreach from=$best_sellers item=product name=myLoop}
  {if $smarty.foreach.myLoop.iteration > 3} {break}{/if}

 

hey can you please use english language? this is english section

Link to comment
Share on other sites

  • 9 months later...

if you have prestashop 1.5x you can solve the problem by adding the following line to the blockbestsellers.tpl

 

 

{foreach from=$best_sellers item=product name=myLoop}
{if $smarty.foreach.myLoop.iteration > 3} {break}{/if}

I have added this to productscategory.tpl of the productscategory module but it doesn't limit the <li>'s as I have hoped.

Any advice?

Regards,

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...