nicolas wrote:
What is the link of our product page ? Do you have a category_pathway in the parameters of that link ?
Could you copy/paste the modification you did ?
from listing_div.php in product folder
<?php } ?>
<div class="hikashop_products" style="clear:both">
<?php
$class = hikashop::get('class.category');
$category = $class->get(JRequest::getVar('category_name')); ?>
<h1> Tillgängliga delar från
<?php echo $category->category_name; ?></h1>
<ul class="hikashop_product_list">
<?php
$columns = $this->params->get('columns');
$height = (int)(30/$columns)-1;
$current_column = 1;
if(!empty($this->rows)){
foreach($this->rows as $row){
?>
<div class="hikashop_product" style="width:<?php echo $width;?>%;">
<div class="hikashop_container">
<div class="hikashop_subcontainer"><h4>
<li class="hikashop_product_list_item" style="float:left;width:<?php echo $width;?>%;"><?php
$this->row =& $row;
$this->setLayout('listing_'.$this->params->get('div_item_layout_type'));
echo $row->product_name;
?></li></h4>
</div>
</div>
</div>
<?php if($current_column>=$columns){ ?>
<div style="clear:both"></div>
<?php
$current_column=0;
}
$current_column++;
}
}
?>
</ul>
</div>