netwood Posted May 13, 2016 Share Posted May 13, 2016 In version 5.3.14 I modified the invoicepdf.tpl to "remove" the red UNPAID from pdf invoices. I did that by changing the color of UNPAID from red to white. Like this: # Invoice Status $statustext = $_LANG['invoices'.strtolower($status)]; $pdf->SetFillColor(255,255,255); $pdf->SetDrawColor(255,255,255); We have upgraded to 6.3.1 and to the "six" theme. The code in invoicepdf.tpl is totally different in the six theme. I'm not that good with coding so does anyone know what I should change in the new invoicepdf.tpl to "remove" the red UNPAID? //jonas 0 Quote Link to comment Share on other sites More sharing options...
brian! Posted May 13, 2016 Share Posted May 13, 2016 change all the values in the code below to 255... } else { $pdf->SetFillColor(223, 85, 74); $pdf->SetDrawColor(171, 49, 43); 0 Quote Link to comment Share on other sites More sharing options...
netwood Posted May 13, 2016 Author Share Posted May 13, 2016 Thank you very much Brian. 0 Quote Link to comment Share on other sites More sharing options...
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.