QUOTE (ioscommerce @ Mar 23 2008, 07:46 PM)

I have found another site which is using this module
I found somebody successfully did this
Hardcode it for certain quantities or quantity levels seems not too difficult with a change in the function getPriceString in includes/classes/PriceFormatter.php:
CODE
// If you want to change the format of the price/quantity table
// displayed on the product information page, here is where you do it.
if($this->hasQuantityPrice == true) {
for($i=1; $i<=8; $i++) {
if($this->quantity[$i] > 0) {
if ($this->quantity[$i] > 2 && !isset($_SESSION['customer_id'])) {
$lc_text .= '<tr><td class='.$style.'>'
. $this->quantity[$i]
.'+ </td><td class='.$style.'>'
.' Login</td></tr>';
} else {
$lc_text .= '<tr><td class='.$style.'>'
. $this->quantity[$i]
.'+ </td><td class='.$style.'>'
. $currencies->display_price($this->price[$i],
tep_get_tax_rate($this->taxClass))
.'</td></tr>';
}
} // end if($this->quantity[$i] > 0)
}