AWOCOUPON PRO ver 1.5.1.
Vertuemart 1.1.9
Correct shipping amount is not being displayed on final order confirmation page, specifically it is showing $0 when a gift cert is used.
In basket shipping shows as Shipping and Handling Fee: $9.86
But on final confirm page it shows as $0 Shipping Rate: Basic Shipping; $0.00;
On Final Confirmation at
\components\com_virtuemart\themes\s5_shopper_frenzy\templates\checkout\get_final_confirmation.tpl.php
CODE BLOCK Around line 75
I found the hack to correct for confirmation email and within basket, but not for the final confirmation page.
Any ideas? Thanks.
Vertuemart 1.1.9
Correct shipping amount is not being displayed on final order confirmation page, specifically it is showing $0 when a gift cert is used.
In basket shipping shows as Shipping and Handling Fee: $9.86
But on final confirm page it shows as $0 Shipping Rate: Basic Shipping; $0.00;
On Final Confirmation at
\components\com_virtuemart\themes\s5_shopper_frenzy\templates\checkout\get_final_confirmation.tpl.php
CODE BLOCK Around line 75
// Print out the Selected Shipping Method
if(!ps_checkout::noShippingMethodNecessary()) {
echo '<tr><td valign="top"><strong>'.$VM_LANG->_('PHPSHOP_INFO_MSG_SHIPPING_METHOD') . ":</strong></td>";
$rate_details = explode( "|", $shipping_rate_id );
echo '<td>';
foreach( $rate_details as $k => $v ) {
// thepisu: old sample data cointaned ">" instead of ">"...
// so we don't have to make safe if ">" is found
if (strpos($v,">")===false) {
$v = shopMakeHtmlSafe($v);
}
if( $k == 3 ) {
echo $CURRENCY_DISPLAY->getFullValue( $v )."; "; //SHIPPING IS ECHOED HERE
} elseif( $k > 0 && $k < 4) {
if ($k ==2 ){
echo $v.'; ';
}
//echo $v.'; '; //comment out do not want carrier displayed
}
I found the hack to correct for confirmation email and within basket, but not for the final confirmation page.
Any ideas? Thanks.