Hi,
I'm trying to remove a manufacturer from some of my products. I tried deleting from the Manufacturer field, clicked save but it still comes up when I check on it again.
As a result I cannot remove that manufacturer from the list of manufacturers.
Any solutions to this? This is a Opencart bug isn't it?
I'm using 1.5.6
I'm trying to remove a manufacturer from some of my products. I tried deleting from the Manufacturer field, clicked save but it still comes up when I check on it again.
As a result I cannot remove that manufacturer from the list of manufacturers.
Any solutions to this? This is a Opencart bug isn't it?
I'm using 1.5.6
Not sure if it's a bug but I had the same issue.
Solution:
I already use this export/import module - http://www.opencart.com/index.php?route ... load_id=32
Using the tool I exported my store, removed the association to manufacturer in MS Excel (deleted contents of cell), imported the edited data which sorted the problem.
Hope this helps
Solution:
I already use this export/import module - http://www.opencart.com/index.php?route ... load_id=32
Using the tool I exported my store, removed the association to manufacturer in MS Excel (deleted contents of cell), imported the edited data which sorted the problem.
Hope this helps

Confirmed Bug (been there since autocomplete was added)
This is one of the few (if not only) auto-completes that not only have the selection, but also use the same field for the value. So it needed to have additional handling when cleared.
The FIX:
1. EDIT: admin/view/template/catalog/product_form.tpl
2. FIND:
3. BEFORE, ADD:
This is one of the few (if not only) auto-completes that not only have the selection, but also use the same field for the value. So it needed to have additional handling when cleared.
The FIX:
1. EDIT: admin/view/template/catalog/product_form.tpl
2. FIND:
Code: Select all
$('input[name=\'manufacturer\']').autocomplete({
Code: Select all
$('input[name=\'manufacturer\']').blur(function() {
if ($('input[name=\'manufacturer\']').attr('value') == '') {
$('input[name=\'manufacturer_id\']').attr('value', '0');
}
});
Who is online
Users browsing this forum: Die Hobbywerkstatt and 18 guests