Hi Thanks for your response.
I've been trying to edit the file /components/com_hikashop/views/product/view.html.php
However my PHP skills are not fantastic, i'm not really sure what code i need to add.
From looking at the checkout/view.html.php file i think i need to add:
function _getImagesName($type){
$images_folder = HIKASHOP_MEDIA .'images'.DS.$type.DS;
jimport('joomla.filesystem.folder');
$files = JFolder::files($images_folder);
$images = array();
foreach($files as $file){
$parts = explode('.',$file);
array_pop($parts);
$name = implode('.',$parts);
$images[$name] = $file;
}
$this->assignRef('images_'.$type,$images);
}
and
$show_image = $config->get('show_cart_image');
$this->params->set('show_cart_image',$show_image);
$currencyClass = hikashop_get('class.currency');
$this->assignRef('currencyHelper',$currencyClass);
$image = hikashop_get('helper.image');
$this->assignRef('image',$image);
within the function cart()
Is this correct or am i way off?
Thanks in advanced
Sean R.