News:

You may pay someone to create your store, or you visit our seminar and become a professional yourself with the silver certification

Main Menu

Featured product styling in category view

Started by flidais, March 27, 2012, 10:28:35 AM

Previous topic - Next topic

flidais

Hello

I was looking for the solution, but couldnt find it anywhere.
My problem is that i want to style featured products in category view, so the clients can see which products, are featured.

How exactly can i get the information that the products type is featured?
I did var_dump of $this-> products in category view template, but there is no such info about type of products, is there any way to check it in category view?

Im using VirtueMart 2.0.2

danio_d

Hi,

in category template:
          <?php if ($product->product_special == 1) { ?>
                  <div>PROMOTION!!! </div>
               <?php    }?>


and in details:
                              <?php if ($this->product->product_special == 1) { ?>
                  <div class="promocja"> </div>
               <?php    }?>