I think some users might need to have easier and quicker way to add/modify options for products.
Original distribution of osCommerce gives separate page for this.
Now on the page where you update(edit) products you will have the list of options set for the product you are updating.
NOTE: There is no options list when you create new product.
After you create new page it will refresh and the option list will show
For more contributions please visit www.algozone.com
Legend: 
Download

Report
New File For: Products options added to product edit page
in install step 3:
*** Step 3 ***
IN THIS SECTION:
if (USE_CACHE == 'true') {
tep_reset_cache_block('categories');
tep_reset_cache_block('also_purchased');
}
tep_redirect(tep_href_link(FILENAME_CATEGORIES, 'cPath=' . $cPath . '&pID=' . $products_id));
}
break;
case 'copy_to_confirm':
....
REPLACE:
tep_redirect(tep_href_link(FILENAME_CATEGORIES, 'cPath=' . $cPath . '&pID=' . $products_id));
WITH:
// commented and replaced for product attributes contrib
// tep_redirect(tep_href_link(FILENAME_CATEGORIES, 'cPath=' . $cPath . '&pID=' . $products_id));
tep_redirect(tep_href_link(FILENAME_CATEGORIES, 'cPath=' . $cPath . '&pID=' . $products_id . '&action=new_product'));
// end replacement
*** End Step 3 ***
when click update button it returns product edit page Skip step 3.
If you have the following contributions installed in your osc and are wanting to add the Products options added to Product edit page then you can down this file and just upload the admin/categories.php file over your file after you have BACKED IT UP!
Otherwise you can use a file merging utility like WinMerge to compare your categories.php and this one. Make changes where it is appropriate.
Be SURE you back it up before you replace it!
This Categories.php has been modified for the following contributions.
Modified for MVS V1.1 - Multi Vendor Shipping
categories_images_folder_treeV1.2 - Saves images to categories where product is located.
category_descriptions_v502 - allows for descriptions to be displayed in the categories.
Quick Edit Installation and icons_1 - Allows you to click icon in admin that takes you directly to the edit product page.
Ultimate_SEO_URLsv21da_1_2 - Allows for search engine optimization.
If you do not have at least MVS or the categories image folder tree then you should probably down the previous download.
I think some users might need to have easier and quicker way to add/modify options for products.
Original distribution of osCommerce gives separate page for this.
Now on the page where you update(edit) products you will have the list of options set for the product you are updating.
NOTE: There is no options list when you create new product.
After you create new page it will refresh and the option list will show
For more contributions please visit www.algozone.com