I grabbed the files from https://github.com/mc12345678/Stock_...butes_Combined today and tried applying them to my test site. After installation I get a blank page in the admin and the error log file points me to includes/classes/class.products_with_attributes_class_stock.php line 509. It reads:
Code:
if (!empty(stock_attributes_list)) {
return $stock_attributes_list;
} else {
return false;
}
I changed it to:
Code:
if (!empty($stock_attributes_list)) {
return $stock_attributes_list;
} else {
return false;
}
This allowed the site to function without error, so that seems like step in the right direction. I am struggling to get the dynamic dropdowns functioning, but I wanted to report this and make sure it looked right to you mc12345678.
Bookmarks