Floobynooby Posted June 24, 2009 Share Posted June 24, 2009 Hi to stop having to tidy up PDF invoices and capitalise names, addresses and postcodes, you can force the address and name to be in first letter upper-case and the postcode all upper-case.Go to document:Classes/ PDF.phpInsert the red text to capitalise first letter of each word.$pdf->Cell($width, 10, Tools::iconv('utf-8', self::encoding(), ucwords($invoice_address->address2)), 0, 'L');To make the postcode all capitals add the green code above.$pdf->Cell($width, 10, Tools::iconv('utf-8', self::encoding(), strtoupper($invoice_address->postcode)), 0, 'L'); $pdf->Ln(5);You can add to each line of the address, the customers name and so on.Hope its useful. Link to comment Share on other sites More sharing options...
Lee Posted February 1, 2013 Share Posted February 1, 2013 Thanks, does anyone have any idea how to do this in Prestashop 1.4+ ? As the code has changed slightly since this version. Link to comment Share on other sites More sharing options...
jimi007 Posted February 3, 2015 Share Posted February 3, 2015 I need to but its seems no one have idea about PS 1.6 Link to comment Share on other sites More sharing options...
Dh42 Posted February 4, 2015 Share Posted February 4, 2015 There are two ways that I would test out. I would test out the smarty modifier that the previous poster stated or I would test out using css. I am pretty sure that inline style work with the pdf library used, but I am not positive if that style is supported. Link to comment Share on other sites More sharing options...
tuk66 Posted February 4, 2015 Share Posted February 4, 2015 ucwords should work, but you need to use it in /pdf/invoice.tpl template. not tested {ucwords($delivery_address)} or {mb_convert_case($delivery_address, MB_CASE_TITLE, "UTF-8")} http://stackoverflow.com/questions/3475395/capitalizing-lower-case-letters Link to comment Share on other sites More sharing options...
jimi007 Posted February 4, 2015 Share Posted February 4, 2015 not working Link to comment Share on other sites More sharing options...
Recommended Posts