i am styling the quantity box to say this
Buy 3 for $2.06 each and save 4%
i have this code in tpl product info
Code:
<!--bof Quantity Discounts table -->
						<?php
						  if ($products_discount_type != 0) { ?>
						<?php
						/**
						 * display the products quantity discount
						 */
				$cheapest = zen_get_products_discount_price_qty((int) $_GET['products_id'], 20000);
                $cheapest = '$' . number_format($cheapest, 2);
                $price = zen_get_products_actual_price((int) $_GET['products_id']);
                $price = '$' . number_format($price, 2);
                $bulkqty = $products_discounts_query->fields['discount_qty'];
				$bulkpercent = round($quantityDiscounts[$columnCount]['discounted_price'] = $products_discounts_query->fields['discount_price']);
                if ($cheapest != $price && (!stristr($price, "productSpecialPrice") ) && (!stristr($price, "call_for_prices") && ($calculator == 1))) {
                    echo 'Buy&nbsp;'. $bulkqty . '&nbsp;Sq.&nbsp;Ft.&nbsp;for&nbsp;' . $cheapest .'&nbsp;and&nbsp;save&nbsp;' . $bulkpercent.'%';
              } else if ($cheapest != $price && (!stristr($price, "productSpecialPrice") ) && (!stristr($price, "call_for_prices") && ($calculator == 2))) {
                    echo 'Buy&nbsp;'. $bulkqty . '&nbsp;Sq.&nbsp;Ft.&nbsp;for&nbsp;' . $cheapest .'&nbsp;and&nbsp;save&nbsp;' . $bulkpercent.'%';
                 } else if ($cheapest != $price && (!stristr($price, "productSpecialPrice") ) && (!stristr($price, "call_for_prices") && ($calculator == 0))) {
                    echo 'Buy&nbsp;'. $bulkqty . '&nbsp;for&nbsp;' . $cheapest .'&nbsp;each&nbsp;and&nbsp;save&nbsp;' . $bulkpercent.'%';
                 }
						
						  }
						?>
					<!--eof Quantity Discounts table -->
i need to know how to show more quantity discounts? it is only showing the 2nd discount
normal operation in the quantity box shows three columns.
im try to show only the 2 columns as text.
what do i need to add to show the other columns?
or is this the right file to do this in?