Hi,
The problem you got is related to the tags and it is something I have already prepare for the next release.
In the file "administrator/com_hikamarket/classes/product.php" please replace
if(hikamarket::acl('product_edit_tags')) {
$tagsHelper = hikamarket::get('shop.helper.tags');
if(!empty($tagsHelper) && $tagsHelper->isCompatible())
$product->tags = $formData['tags'];
else
unset($product->tags);
}
By
unset($product->tags);
if(hikamarket::acl('product_edit_tags')) {
$tagsHelper = hikamarket::get('shop.helper.tags');
if(!empty($tagsHelper) && $tagsHelper->isCompatible())
$product->tags = empty($formData['tags']) ? array() : $formData['tags'];
}
It should fix the issue.
Regards,