-- HikaShop version -- : 2.6.3
-- Joomla version -- : 3.6.4
-- PHP version -- : 5.6
I have a
Package Comparison
page on our website. I'm looking to add the Hikashop current price to this page under each package.
I'd like to also add an 'Add to Cart' button under each one.
I've tested creating a module for this and I can get the Product Information using the administrator/components/com_hikashop/helpers/helper.php include. I then set the following code:
$product_id = 1;
$productClass = hikashop_get('class.product');
$product=$productClass->get($product_id);
var_dump($product);
This does not include price though. Any help to accomplish this and the 'Add to Cart' button would be appreciated. I'm not sure if this will be a module or external page yet. It depends on if the image functionality works properly in a module.