Thanks Nicolas, but how to get the image from there, on the page for the categories have only one button browse, which only opens folders from my device. There is no option to choose from the media / com_hikashop / the upload as in product page.
=====================================================================================
Its me agan, i find the solution
In category view "category / form.php" i add this code:
<div style="float:right">
<?php
echo $this->popup->display(
'<img src="'.HIKASHOP_IMAGES.'add.png"/>'.JText::_('ADD'),
'ADD',
hikashop_completeLink("product&task=selectimage&product_id=".@$this->element->product_id,true),
'image_add_button',
860, 480, '', '', 'button'
);
?>
<?php
echo $this->popup->display(
'<img src="'.HIKASHOP_IMAGES.'go.png"/>'.JText::_('SELECT'),
'SELECT',
hikashop_completeLink("product&task=galleryimage&product_id=".@$this->element->product_id,true),
'image_gallery_button',
860, 480, '', '', 'button'
);
?>
</div>
right after:
<?php
echo $this->popup->display(
'<img src="'.HIKASHOP_IMAGES.'add.png"/>'.JText::_('ADD'),
'ADD',
hikashop_completeLink("product&task=selectimage&product_id=".@$this->element->product_id,true),
'image_add_button',
860, 480, '', '', 'button'
);
?>
============================
Buttons working well and they open desired directory "media / com_hikashop / upload/" but image cant change with new chosen......