
Originally Posted by
oavs
Product Attribute Grid doesn't show in admin. Do I need to install STOCK BY ATTRIBUTES to make it work?
I have FTP includes file and followed the instructions but no luck. Drop down does not show 'Grid'
No, SBA is not required for PAG to work.
A couple of reasons off the top of my head why it didn't add the Grid option, obvious is that the files were not all uploaded to the correct location, less obvious is that in upload that a file did not fully make it.
In uploading there is a template override file that is very similar to what is used for SBA (includes/modules/YOUR_TEMPLATE/attributes.php) on which the plugin was further developed to simplify the install process. YOUR_TEMPLATE should be renamed to the folder name of the template you are using.
The next thing about the "install" of this plugin is that it does require accessing from the store front a product that has attributes.
The next is that after the code was run, did not log out of and back into the admin under a different session.
And then, and possibly the issue, is that the "install" code runs a query that basically accepts the sql database to "know" that the data is "up-to-date" but in the process, it doesn't force that fact. The correction if this is the case is to locate the code referenced at this post and change rows that have this type entry from:
Code:
$result = $db->Execute($sql);
To:
Code:
$result = $db->Execute($sql, false, false, 0, true);
This will be incorporated when the plugin is again submitted for download. Also, other visual issues will be addressed as some features were only partially complete in modification.