Hi,
1. What part of the characteristic ? The global characteristic or the values ?
When you edit a characteristic or when you create a new one ?
Please provide a process so I will be able to reproduce it in my local website.
2. It is an issue with the new "product namebox".
Please edit the file "administrator/components/com_hikamarket/classes/product.php" and replace
if(!empty($value)) {
if(!is_array($value))
$value = array($value);
By
if(!empty($value)) {
if(!is_array($value))
$value = array($value);
if(is_object(reset($value))) {
$values = array();
foreach($value as $v) {
$values[] = (int)$v->product_id;
}
$value = $values;
}
It will handle objects as values for the getNameboxData function.
Regards,