mikecallow - 10 October 2012 06:41 AM
Also, one problem I have run into, is that first of all, the extra related products save just fine. However, if you then edit the product’s other attributes, such as price/pictures and save it, the extra related products are then lost.
To get around this I opened Observer.php and changed the line:
if (!isset($links['accesories'])) {
to:
if (!empty($links['accesories'])) {
and this seems to have fixed this problem.
Thank you very much.