
Originally Posted by
Nick1973
This is what is happening on the cart I am developing.
Price field in the admin would be the total number of products. So 6 x 50p = £3.00 - £3.00 being the price entered in the standard price field in the admin.
Each product has to display a single product price, so the price displayed would be 50p per product.
The quantity box must have a value of 1 and at the side of it in text 'x 6' so the frontend user knows that they are adding a pack of products at 50p each.
Now for the price display, it would normally display the full price which would be £3.00, however we don't want this on the product page so this is where the extra field comes in where backend users can enter a single unit price. So the solution is an extra field which is independent and does not calculate when the product is added to the cart. Basically the price is for display purposes only.
Now in a a hidden field the price of 6 x 50p = £3.00 is on the product description page. So when the user adds to the cart they add 1 x 6. This adds to the cart at £3.00.
I have already done the development on the products description page and developed this to work in the cart.##The bit that was missing was displaying this extra 'single unit price' field on the products listing pages. Users will not be buying from product listing pages, they will be forced to view the product before buying so this in turn forces them to add the product at the correct amounts.
Hope thats a bit clearer. You will see it when the site goes live and understand it more as we're pretty close on this one anyway.