-- url of the page with the problem -- :
www.bil-filtertjanst.se
-- HikaShop version -- : 2.5.0
-- Joomla version -- : 3.4.3
-- PHP version -- : 5.4.42
-- Browser(s) name and version -- : N/A
Hi,
I have a customized filter module and now in the end of the process I have a table to display all products after the filtering is done.
I have 4 columns displaying: Product name, description, Product price (incl. VAT), Thumbnail of product photo and ADD to Cart button (BUY/KÖP).
Everything except for the product price works fine.
How can I get that value listed as well?
Here is some code from the helper.php file that makes it all work.
This is the part where the table row displaying Product name and description, Product price incl. VAT, Thumbnail of product photo and Buy-button.
<tr class="filter<?php echo $k?>">
<!--<td >Â </td>-->
<!--<td >Â </td>-->
<td style="padding: 6px; font-size: 14px;" width="170"><?php echo $product->product_name?></td>
<td style="padding: 6px; font-size: 14px;" width="80"><?php echo $product->product_price?></td>
<td >
<a title="Bilden är endast representativ för filtertypen" rel="shadowbox" href="images/com_hikashop/upload/<?php echo $image;?>">
<img width="50" border="0/" src="images/com_hikashop/upload/<?php echo $image;?>">
</a>
</td>
<td width="170" align="right" class="filter<?php echo $k?>" style="text-align: right;">
<input type="button" onclick="AddToCart<?php echo $moduleid?><?php echo $uniqid?>(this,'<?php echo $product->product_id;?>');return false;" value="<?php echo JText::_('ADD_TO_CART')?>" name="add" class="btn button hikashop_cart_input_button" rel="#filterresult<?php echo $moduleid?><?php echo $uniqid?>" method="Cart"/>
</td>
</tr>
I get everything except dispolaying the price to work.
Anyone who can tell me how to call fror that value and make it correct?
Any help is highly appreciated.
Thanks
Micke