[Solved]Top Sales.

  • Posts: 203
  • Thank you received: 0
12 years 11 months ago #39248

Hello HikoShop Team,

ist it possible to ti show the rank of the produckts sorted by sales in the module?

Like

Product a

Rank 1

Product c

Rank 2


and so on?

Thx

Andreas

Last edit: 12 years 11 months ago by CMS-Buttler.

Please Log in or Create an account to join the conversation.

  • Posts: 83103
  • Thank you received: 13415
  • MODERATOR
12 years 11 months ago #39361

Yes it's possible.

In your module's hikashop options, change the option "ordering field" to "product_sales" and the option "ordering direction" to "descending".

Please Log in or Create an account to join the conversation.

  • Posts: 203
  • Thank you received: 0
12 years 11 months ago #39377

Yeah thx i did that already

the question was can i show the rank with numbers.

1
2
3
4
5

in the frontend?

Another Idea could be to show the number of sales in the frontend.

Is that pssoible?

How could i show the quantitiy in stock only in the modules?

So many questions sorry.

Thx

Andreas

Last edit: 12 years 11 months ago by CMS-Buttler.

Please Log in or Create an account to join the conversation.

  • Posts: 83103
  • Thank you received: 13415
  • MODERATOR
12 years 11 months ago #39519

There are no options for all that. You will have to edit the layout file that you're using on your products listing ( it's by default listing_img_title ) via the menu Display->Views and change the code there to display the additional information you need.

For the sales the code will be:
<?php echo $this->row->product_sales; ?>

For the quantity the code will be:
<?php echo $this->row->product_quantity; ?>

For the rank the code will be:
<?php static $rank =0; $rank++; echo $rank; ?>

The following user(s) said Thank You: CMS-Buttler

Please Log in or Create an account to join the conversation.

Time to create page: 0.061 seconds
Powered by Kunena Forum