I had a bug popup, but it was after I made some other changes.. the master category ID was erased on a product update which caused a die 'I WOULD NOT ADD'
I see why it did that, but I think its from the standard update side then the category tab.. the fix for me was to change udate_product.php line..
Code:
$update_sql_data = array( 'products_last_modified' => 'now()', 'master_categories_id' => ($_POST['master_category'] > 0 ? zen_db_prepare_input($_POST['master_category']) : zen_db_prepare_input($_POST['master_categories_id'])));
to:
Code:
$update_sql_data = array( 'products_date_added' => 'now()', 'master_categories_id' => (int)$current_category_id);
which resolved the issue with the missing Category ID...
The edits I did was to split the extra tabs folders so I could have a common folder and a product type folder for tabs. The common folder would load tabs for all product types and the other just for that product type. I didn't see any other way to get an extra data tab for standard products and than do the same for auction products where both had different data needs.
Attaching the extra data folder.
Bookmarks