Cena ma zmieniać się automatycznie po wybraniu ilości. Przykład takiego zastosowania jest na stronie - http://www.hellolucky.com/wedding/weddi ... ation.html
Aktualnie w sklepie (product.tpl) w miejscu koszyka (qty) jest kod (poniżej) pozwalający na wyświetlanie ilości oraz ceny jednostkowej. Ilość i cenę wpisuje się w discount.
Oferty wykonania modyfikacji proszę przesyłać na adres: oferty(at)usb-drive.pl
- Kod: Zaznacz cały
<div class="cart">
<div><?php echo $text_qty; ?>
<select name="quantity">
<?php foreach ($discounts as $discount) { ?>
<option value="<?php echo sprintf($discount['quantity']); ?> "> <?php echo sprintf($discount['quantity']); ?> pcs. (<?php echo sprintf($discount['price']); ?> ea)</option>
<?php } ?>
</select>
<input type="hidden" name="product_id" size="2" value="<?php echo $product_id; ?>" />
<input type="button" value="<?php echo $button_cart; ?>" id="button-cart" class="button" />
</div>
<span class="cart_clearer"></span>
</div>