ok, I found that and am pretty sure that is not the file I was looking to edit. that seems to edit the individual product page (where you add the item to cart).
I want to edit this page:
/index.php/products/category/listing/cid-12/name-categoryname
that has this code in source:
<div class="hikashop_product" style="width:32%;">
<div class="hikashop_container">
<div class="hikashop_subcontainer">
<div style="height:100px;text-align:center;clear:both;" class="hikashop_product_image">
<a href="/link/link.php">
<img src="/image/file/link.jpg" height="100" width="100" /> </a>
</div>
<span class="hikashop_product_price_full">
<span class="hikashop_product_price">$26.15</span> each</span><span class="hikashop_product_name">
<a href="/link/link-174">
product example text </a>
</span>
</div>
</div>
</div>
and I want it to look like this:
<div class="hikashop_product" style="width:32%;">
<div class="hikashop_container">
<div class="hikashop_subcontainer">
<div style="height:100px;text-align:center;clear:both;" class="hikashop_product_image">
<a href="/link/link.php">
<img src="/image/file/link.jpg" height="100" width="100" /> </a>
</div>
<span class="hikashop_product_name">
<a href="/link/link-174">
product example text </a>
</span>
*****<span class="hikashop_product_price_full">
<span class="hikashop_product_price">$26.15</span> each</span>*****
</div>
</div>
</div>
I thought it might be in Category > listing_div (((code is not protecting php from being eaten in this post))):
<div class="hikashop_category" style="width:<?php echo $width;?>%;">
<div class="hikashop_container">
<div class="hikashop_subcontainer">
<?php
$this->row =& $row;
echo $this->loadTemplate($this->params->get('div_item_layout_type'));
if(!empty($this->row->childs)){
?>
<ul class="hikashop_category_list">
<?php
foreach($this->row->childs as $child){
$link = hikashop::completeLink('category&task=listing&cid='.$child->category_id.'&name='.$child->alias.$this->menu_id);
?>
<li class="hikashop_category_list_item">
<a href="<?php echo $link; ?>">
<?php echo $child->category_name; ?>
</a>
</li>
<?php
}
?>
</ul>
but I get the feeling I have to edit whatever file this refers to:
echo $this->loadTemplate($this->params->get('div_item_layout_type'));