Quote:
Originally Posted by Dongan
Ok fine. our support team will address this.
|
Dear Dongan, There has been no support from your team. Of the 3 bugs in your OPC I fixed 1 in the templates but still have the following 2 issues.
1. When a customer is shipping to another address the real time shipping charges work fine until the customer enters a coupon. Once the coupon is entered the shipping charges go back to being based upon the billing address.
2. When an order is placed, your OPC is writing duplicate entries into the Address Book. I start with 1 billing address and 1 shipping address at the beginning of the order and when the order is complete I have 2 extra duplicates of both the billing address and the shipping address.
The 3rd issue involved the minicart subtotal not taking into consideration coupon discounts. My fix is below.
In File: MM-minicart-items.tpl
Original
Quote:
<tr>
<td align="right" colspan="2" class="MM_mini_td_black" style="padding:5px 20px;">{$lng.lbl_subtotal} : {include file="currency.tpl" value=$MM_mini_display_subtotal}</td>
</tr>
|
Modified
Quote:
{if $cart.display_discounted_subtotal ne $cart.subtotal}
<tr>
<td align="right" colspan="2" class="MM_mini_td_black" style="padding:5px 20px;">{$lng.lbl_subtotal} : {include file="currency.tpl" value=$cart.display_discounted_subtotal}</td>
</tr>
{else}
<tr>
<td align="right" colspan="2" class="MM_mini_td_black" style="padding:5px 20px;">{$lng.lbl_subtotal} : {include file="currency.tpl" value=$MM_mini_display_subtotal}</td>
</tr>
{/if}
|
I would appreciate an update on when this will be fixed. My request in my ticket has gone unanswered.