Hi
This is one of first few contributions. Please let me know if you liked it or if you found any issues with it as well.
This contribute will enable the user to show multiple product options in teh product info page. ie. the customer can add in 'products' of type1 5 and type 2 3 simultaneously. At present it has been configured to show 5 lines only but I plan to expland this and make it more customizable ;)
Create for: client project
Created by: Hari, Harishyam services,
feenix_666@yahoo.com
Legend: 
Download

Report
I think there has been a misunderstanding. The original module is not supposed to server the purpose it currently serves now. ?( update by shotputty ).
the original module was intended for the following case:
Seller has:
Product A
with option: Colour { Pink, Red or Blue }
and option: Size { Large, Medium, Small }
Customer wants to buy:
2 Pink Large
3 Red Medium
1 Blue Small.
The pull downs help the customer to enter the corresponding quantities.
Updates intended:
1. Quantity box in case ther e is no options.
Note: Choosing on the shopping cart item does not bring in the "default" attribute when coming to the product page.
I will update the module soon.
to shotputty:
Please state the specific case where your update stands good. Also, if it is too different, please post in anew contrib. It really helps :).
Cheers
Hari
Many Bug fixes. Updated installation. Now working as supposed. Preconfigured files attached or make the changes as described in installation file.
Bugs fixed:
0) Cleaned up some code, which isn't really a bug ;-)
1) When product would have more than 1 option with attributes it would make no sense to add quantities. (think about this for a minute)
2) Attributes was set at 5 which would be only appropriate when you actually had 5 attributes, now it auto adjusts.
3) Product attribute with 0 quantity was also added to cart! (in my case that is)
4) Would show dropdown on each line with the default attribute on top. What's the use of the dorpdown of you have all options? --> Will now show all unique attributes without the dropdown!
Additional comments:
will now also show a quantity field for products with no options.
Please feel free to contact me for any questions of suggestions. Use at own risk. Please backup before proceeding.
Great contribution!
This small little addition is for those who display a quantity box on the product info page.
This contribution adds individual qty. boxes for each attribute, so the default qty. box is redundant.
In product_info.php:
Find:
<tr><td class="main">Enter Quantity<br><?php echo tep_draw_input_field('cart_quantity','1','size="3"'); ?></td></tr>
Replace with:
<?php
if ($products_attributes['total'] < 1) {
?>
<tr><td class="main">Enter Quantity<br><?php echo tep_draw_input_field('cart_quantity','1','size="3"'); ?></td></tr>
<?php
}
?>
Now standard qty box will remain if product has no attributes, and it will be hidden if attributes exist.
*file contains exactly what is written here
Hi
This is one of first few contributions. Please let me know if you liked it or if you found any issues with it as well.
This contribute will enable the user to show multiple product options in teh product info page. ie. the customer can add in 'products' of type1 5 and type 2 3 simultaneously. At present it has been configured to show 5 lines only but I plan to expland this and make it more customizable ;)
Create for: client project
Created by: Hari, Harishyam services,
feenix_666@yahoo.com