Guest Posted December 19, 2005 Posted December 19, 2005 Once the invoice goes to PDF and it comes up in Adobe we have the below written over it's self. Sub-Total: <span class=currency_symbol>$</span>22.85<span class=currency_symbol></span> United States Postal Service (1 x 4.26lbs) (Priority (2 - 3 Days)): <span class=currency_symbol>$</span>10.10<span class=currency_symbol></span> Total: <span class=currency_symbol>$</span>32.95<span class=currency_symbol></span> Does anyone now why this is happening? We have gone through the invoice.php but don't know what line would cause this to happen. Quote
Guest Posted December 20, 2005 Posted December 20, 2005 This only happends when Palpay is used as the payment method. Does this help with a fix? thanks, Quote
rosscosworld Posted September 29, 2006 Posted September 29, 2006 (edited) I am also having the same problem... expect it happens with every payment method used... Any help would be much appreciated! Thanks, Ross. Edited September 29, 2006 by rosscosworld Quote
davidstoker Posted April 29, 2007 Posted April 29, 2007 I am also having the same problem... expect it happens with every payment method used... Any help would be much appreciated! Thanks, Ross. I'm not sure if any one is still running into this problem but I just recently had a problem like this when installing PDF invoice myself. The solution I found for it was to add a strip_tags call on the order totals. Look for this line: $pdf->MultiCell(100,6,$order->totals[$i]['title'] . ' ' . $order->totals[$i]['text'],0,'R'); and make it this: $pdf->MultiCell(100,6,strip_tags($order->totals[$i]['title']) . ' ' . strip_tags($order->totals[$i]['text']),0,'R'); This exact line may not exist in your version of the invoice file if you have changed the location of the totals and such (the 100 and 6 are probably different). Just look for a line similar to this. It should be just above the original comment that says "Draw the shipping address for label." Hope this helps someone! 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.