
Originally Posted by
dthomas
Hello,
I have a fresh install of 1.3.8 and really need this dynamic drop downs to function before I start really adding content.
I have been getting the error message on the product page
"1146 Table 'mydb.TABLE_PRODUCTS_STOCK' doesn't exist
in:
[select quantity from TABLE_PRODUCTS_STOCK where products_id = '1' AND quantity > 0]"
I do have both stock_by_attributes and dynamic drop down installed. I have read through these forums but nothing in here seems to help. Tried modifying the "includes/database_tables.php" by adding... define('TABLE_PRODUCTS_STOCK', 'products_with_attributes_stock');
This only resulted in a completely white screen.
How do I get this working?
Many thanks!
You will need to add the define to database_tables.php. This is what my file looks like...
Code:
define('TABLE_PRODUCTS_STOCK', 'products_with_attributes_stock');
Bookmarks