You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The ProductBulkLoader importer chokes at L182 this when create_new_product_groups is set to true:
Object->__call(): the method 'setTitle' does not exist on 'SilverShop\Page\ProductCategory'
The setTitle method indeed does not exist. I've fixed it in a subclassed importer for my own needs, but is there any reason I could not use $obj->Title = $title; instead? Happy to raise a pull request since it seems like a minor fix
The text was updated successfully, but these errors were encountered:
The ProductBulkLoader importer chokes at L182 this when
create_new_product_groups
is set to true:The
setTitle
method indeed does not exist. I've fixed it in a subclassed importer for my own needs, but is there any reason I could not use$obj->Title = $title;
instead? Happy to raise a pull request since it seems like a minor fixThe text was updated successfully, but these errors were encountered: