allright Posted April 13, 2008 Posted April 13, 2008 (edited) Hello all, I installed GiftWrap v1.1 for my online shop, it can work. But now the only issue is like the following: When confirming the check out, in the page of "checkout_confirmation.php": the cost summary doesn't include the GiftWrap part, could you please kindly advise how to add and list the GiftWrap cost before the "Total" cost? actually the GiftWrap amount(which is $2.50) has been counted, only without listing in the following: Per Item (Best Way): $2.50 Sub-Total: $15.00 Total: $19.00 Appreciate much again for your kind advice, thank you!!! Best regards, allright Edited April 13, 2008 by allright Quote
sunrise99 Posted November 5, 2008 Posted November 5, 2008 Hello all, I installed GiftWrap v1.1 for my online shop, it can work. But now the only issue is like the following: When confirming the check out, in the page of "checkout_confirmation.php": the cost summary doesn't include the GiftWrap part, could you please kindly advise how to add and list the GiftWrap cost before the "Total" cost? actually the GiftWrap amount(which is $2.50) has been counted, only without listing in the following: Per Item (Best Way): $2.50 Sub-Total: $15.00 Total: $19.00 Appreciate much again for your kind advice, thank you!!! Best regards, allright I also have this same issue,please help asap. Best Regards, Quote
sunrise99 Posted November 7, 2008 Posted November 7, 2008 I also have this same issue,please help asap. Best Regards, Now fixed, don't miss: CATALOG/INCLUDES/CLASSES/ORDER.PHP ==================================> Locate the following code <============================== if (DISPLAY_PRICE_WITH_TAX == 'true') { $this->info['total'] = $this->info['subtotal'] + $this->info['shipping_cost']; } else { $this->info['total'] = $this->info['subtotal'] + $this->info['tax'] + $this->info['shipping_cost']; } } } ?> ----> INSERT this code: + $this->info['giftwrap_cost'] prior to the ; at the end of lines 2 and 4 (lines start with $this)<---- make sure you leave a blank space prior to the + ******************************************************************************** ******** Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.