I am worried this might become quite complicated, but here goes...
The products my client sells will only be available in set qtys, such as 1,000 2,500 or 10,000. Because of this, I set the qty fields to hidden with a value of 1. Then I created a selectable option for the qty. That all works so far, but I am running into issues with this showing up on the invoice.
By default it will say "1X product name $XXX" Basically I need it to display one or all the options for the product. How can that be added to the invoice?
The products my client sells will only be available in set qtys, such as 1,000 2,500 or 10,000. Because of this, I set the qty fields to hidden with a value of 1. Then I created a selectable option for the qty. That all works so far, but I am running into issues with this showing up on the invoice.
By default it will say "1X product name $XXX" Basically I need it to display one or all the options for the product. How can that be added to the invoice?
Correct. In the product.tpl file change:
to:
Code: Select all
<input type="text" name="quantity" size="3" value="1" />
Code: Select all
<select name="quantity">
<option value="1000">1000</option>
<option value="2500">2500</option>
<option value="10000">10000</option>
</select>
I think I need to reprhase my question, (although that does help answer a different question I have, so thanks for that
My question is how to edit the confirmation email that the customer receives after placing an email. I need to change it to not show the quantity, but instead show some of the options selected on the product.
I am hard coding the quantity field to 1, then setting an option for quantities. The reason I am doing this is Product A may have different quantities available than product B. By setting the quantity as options in the admin panel, you can specify quantities for each individual products.
The thing is, I don't want the customers to see the 1 in the existing quantity field, but instead see the quantity option that they selected. Does that make sense?

My question is how to edit the confirmation email that the customer receives after placing an email. I need to change it to not show the quantity, but instead show some of the options selected on the product.
I am hard coding the quantity field to 1, then setting an option for quantities. The reason I am doing this is Product A may have different quantities available than product B. By setting the quantity as options in the admin panel, you can specify quantities for each individual products.
The thing is, I don't want the customers to see the 1 in the existing quantity field, but instead see the quantity option that they selected. Does that make sense?
Awesome. That would be a great help. Is this one of the modules listed in the contributions page on here? be sure to let me know when it's uploaded and I will be all over it.
Thanks a million!
Thanks a million!
Who is online
Users browsing this forum: No registered users and 6 guests