
Originally Posted by
mc12345678
Your includes/modules/YOUR_TEMPLATE/attributes.php file, does it contain any grid related code or is it the attributes.php file that was provided in the latest download? A simple search for grid within the file should identify the presence.

Originally Posted by
mc12345678
If it does match the file provided, (the word grid not found in it) then in the class file, comment out the line in the __construct section that ends with 'NOTIFY_ATTRIBUTES_MODULE_OPTION_BUILT';
This would be towards the top of the file and looks similar to:
$attachNotifier = 'NOTIFY_ATTRIBUTES_MODULE_OPTION_BUILT';
And try to modify like:
//$attachNotifier = 'NOTIFY_ATTRIBUTES_MODULE_OPTION_BUILT';
Sorry, was able to duplicate the problem when I had two attributes in the grid.
Found the problem/solution.
In:
includes/classes/observers/class.attributes_grid_products.php
Lines 69 - 71 (original):
Code:
if ($i == 1) {
$this->_products_options_names_current++;
}
Change to:
Code:
$this->_products_options_names_current++;
By deleting the code at line 71 and then line 69 (Reversed order provided so that the numbers don't change in the middle of the edit).
Disregard the commenting out from my previous post. That code,
Code:
$attachNotifier[] = 'NOTIFY_ATTRIBUTES_MODULE_OPTION_BUILT'; // keep
does *not* need to be commented out.
Bookmarks