Hi,
The view is "productmarket | form".
You will find in that view the code which display the "namebox" for the selection of the product categories.
$categories = null;
if(!empty($this->product->categories))
$categories = array_keys($this->product->categories);
echo $this->nameboxType->display(
'data[product][categories]',
$categories,
hikamarketNameboxType::NAMEBOX_MULTIPLE,
'category',
array(
'delete' => true,
'sort' => true,
'root' => $this->rootCategory,
'default_text' => '<em>'.JText::_('HIKA_NONE').'</em>',
)
);
You're free to override that view if you want to change the display of the product edition.
More about customization :
www.hikashop.com/support/support/documen...ize-the-display.html
Regards,