Hi,
In the view "productmarket | form", please replace
<dd class="hikamarket_product_category"><?php
echo $this->categoryType->displayMultiple('data[product][categories]', @$this->product->categories, '', $this->rootCategory);
?></dd>
By:
<dd class="hikamarket_product_category"><?php
if(empty($this->product->product_id))
$this->product->categories = array();
echo $this->categoryType->displayMultiple('data[product][categories]', @$this->product->categories, '', $this->rootCategory);
?></dd>
To remove the categories when creating a new product.
Please note that even if there is not displayed category, if you save the product HikaMarket/HikaShop will set a default one. It is not possible to have a product without a least one category.
Regards,