This is a discussion on osC_GiftWrap_v1.0 within the New osCommerce Contributions forums, part of the osCommerce 2.2 Forums category; This corrects the display of the gift wrap price, it was displayed with tax even though show prices with tax ...
| |||||||
| Register | FAQ | Donate | Members List | Calendar | Mark Forums Read |
|
#1
| ||||
| ||||
| In admin/checkout_shipping: Find: if ( ($quotes1_size > 1) || ($n2 > 1) ) { if (DISPLAY_PRICE_WITH_TAX == true) { $gift_tax_rate_tmp = tep_get_tax_rate(MODULE_ORDER_TOTAL_GIFTWRAP_TAX_C LASS); $gift_tax_amt_tmp = $quotes1[$i]['methods'][$j]['cost']; $gift_tax_amt_tmp += tep_calculate_tax($quotes1[$i]['methods'][$j]['cost'], $gift_tax_rate_tmp); Change to: if ( ($quotes1_size > 1) || ($n2 > 1) ) { if (DISPLAY_PRICE_WITH_TAX == 'true') { $gift_tax_rate_tmp = tep_get_tax_rate(MODULE_ORDER_TOTAL_GIFTWRAP_TAX_C LASS); $gift_tax_amt_tmp = $quotes1[$i]['methods'][$j]['cost']; $gift_tax_amt_tmp += tep_calculate_tax($quotes1[$i]['methods'][$j]['cost'], $gift_tax_rate_tmp); *** just added single quotes around true. More...
__________________ Michael Sasek osCMax Developer *** Do not PM me requesting paid help. The only paid work I do is for AABox Web Hosting customers *** Stay Up To Date with everything osCMax: Free osCMax Newsletters - Security notices, New Releases, osCMax News osCMax on Twitter - Up to the minute info as it happens. Know it first. osCMax User Manual - osCMax Templates - Advanced Template Tutorial |