Ok,
One of the solution can be to :
- Edit the "Listing_table" file of your "product" view of your front-end template through "Hikashop->Display->Views".
- Change this line :
foreach($this->rows as $row){
by :
$count = 0;
foreach($this->rows as $row){
$count++;
if($count%2){
$rowId = 'pair';
}else{
$rowId = 'odd';
}
- And this line :
$link = hikashop_completeLink('product&task=show&cid='.$this->row->product_id.'&name='.$this->row->alias.$this->itemid.$this->category_pathway); ?>
<tr>
by
$link = hikashop_completeLink('product&task=show&cid='.$this->row->product_id.'&name='.$this->row->alias.$this->itemid.$this->category_pathway); ?>
<tr id="<?php echo $rowId; ?>">
- Finally use some
CSS
code like :
#pair td {
border-color: blue !important;
}