Hi, now I have another issue. I had modified the price to automatically be listed from lowest to highest price and now it is broken. How do I fix. I am sure a lot of other things may be broken as well.
Hi I forgot this invloved editing this file /components/com_hikashop/views/product/ view.html.php which is a core file. I went back and added the code again and it is fine.
Are there any plans in the future to give a option to filter price from lowest to highest?
Also, I removed my edit and the update did not fix the issue I am having with nested forms and it not adding the product options to the cart.
I did however come up with a solution though. I removed the form tags out where i previously mentioned in the show.php file and
Then in my show_default.php for my product page I added the forrm tags below around the "hikashop_product_right_part" of the show_default.php
<form action="<?php echo hikashop_completeLink('product&task=updatecart'); ?>" method="post" name="hikashop_product_form" enctype="multipart/form-data">
<input type="hidden" name="cart_type" id="type" value="cart"/>
<input type="hidden" name="add" value="1"/>
<input type="hidden" name="ctrl" value="product"/>
<input type="hidden" name="task" value="updatecart"/>
<input type="hidden" name="return_url" value="<?php echo urlencode(base64_encode(urldecode($this->redirect_url)));?>"/>
</form>
Thanks,
Josh