문제

$categories = $this->getCategories($sub_cats);
$product->addToCategories($categories);

foreach ($categories as $category) {
    $product->category[] = $category;
}

This code works good when i want to add product categories but i cannot change id_category_default

How can i change the default category info ?

올바른 솔루션이 없습니다

다른 팁

Did you call the save() method when you tried to save the default category?

$product->id_category_default = (int)$id_category;
$product->addToCategories($categories);
$product->save();
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top