aggiecaitlin Posted March 3, 2008 Share Posted March 3, 2008 How can i add something to the notes section of all the invoices, that will automatically add to every invoice in the future? Thanks in Advance 0 Quote Link to comment Share on other sites More sharing options...
Lib-Design Posted March 3, 2008 Share Posted March 3, 2008 Hi do you mean add it to the PDF? or the basic invoice template? You could edit pdfconfig.php add a few Write() lines in if you want to add a perminate note there (company terms for example) Or the invoice template in your skins folder you could add some information there. If im barking up the wrong tree and thats nothing like you ment. sorry 0 Quote Link to comment Share on other sites More sharing options...
marquis_ce Posted March 5, 2008 Share Posted March 5, 2008 where is the template of PDF in FTP? I couldnt get it. 0 Quote Link to comment Share on other sites More sharing options...
Lib-Design Posted March 5, 2008 Share Posted March 5, 2008 Not so much a Template its a PHP file called phpconfig.php in the includes dir i suggest you are compitant in PHP before attempting an edit, if you need any help drop me an email or so and i will try to give you some suggestions. Mike 0 Quote Link to comment Share on other sites More sharing options...
HostRW Posted March 7, 2008 Share Posted March 7, 2008 As I read this topic I remembered that there is an option in WHMCS to add a note to an invoice. So I thought the TS did mean to have a standard text added to that note. It would be a lot of work to edit the templates in order to add a seasonal note like 'season's greetings' or 'we wish you a happy New Year' etc. Would it not be great to have an option within WHMCS to enter a text which would be automatically added to this very note section of every invoice? 0 Quote Link to comment Share on other sites More sharing options...
texhead Posted March 25, 2008 Share Posted March 25, 2008 I agree. I need to add basic company information such as ABN (Australian Business Number) and other references required by law here in Australia. Not sure if this is catered for in the current system. Good morning, My name is Tony, I am a Noob! Kind regards Tony 0 Quote Link to comment Share on other sites More sharing options...
MACscr Posted March 25, 2008 Share Posted March 25, 2008 As I read this topic I remembered that there is an option in WHMCS to add a note to an invoice. So I thought the TS did mean to have a standard text added to that note.It would be a lot of work to edit the templates in order to add a seasonal note like 'season's greetings' or 'we wish you a happy New Year' etc. Would it not be great to have an option within WHMCS to enter a text which would be automatically added to this very note section of every invoice? LOL, then just add it to the template =P 0 Quote Link to comment Share on other sites More sharing options...
HostRW Posted March 25, 2008 Share Posted March 25, 2008 It doesn't sound like a professional program if you will need to edit templates to add in a message for a few days... There just has to be an option in the program to do that. I am speaking about temporary messages (which one might want to change every few days), not about permanent one off additions (which would be no problem changing it in the templates). Think about quickly adding a special server offer to every invoice for a week. If you have to go and edit the templates, that's way to much bother. First you have to know exactly which template to edit, you have to figure out how to get things on the right place, and if you mess up the whole template doesn't work... I think this just has to be added as a feature!!! 0 Quote Link to comment Share on other sites More sharing options...
chickendippers Posted March 25, 2008 Share Posted March 25, 2008 Editing the templates is easy, if you want to add something to the invoices just edit viewinvoice.tpl 0 Quote Link to comment Share on other sites More sharing options...
HostRW Posted March 25, 2008 Share Posted March 25, 2008 Editing the templates is easy, if you want to add something to the invoices just edit viewinvoice.tpl Thanks, but how would you get some lines of text located near the bottom of the page? I find it very hard to get it at the right place. 0 Quote Link to comment Share on other sites More sharing options...
MACscr Posted March 25, 2008 Share Posted March 25, 2008 Thanks, but how would you get some lines of text located near the bottom of the page? I find it very hard to get it at the right place. Your going to have to learn some html and just keep testing it. Maybe someone should hold your hand while your doing it too? PS: editing viewinvoice.tpl is going to get you the custom note on the html version of the invoice, not the invoice email or the pdf. Your going to have to edit pdfconfig.php located in the includes folder. If you cant figure out how to make the customizations you want, then pay someone to do it for you. But since you advertise that your a web design company, you can probably figure it out yourself easily. Right? =P 0 Quote Link to comment Share on other sites More sharing options...
dutchnet Posted March 28, 2008 Share Posted March 28, 2008 It's easy to change the layout in includes/pdfconfig.php as an example here is our own footer part printing company details on the last lines of each pdf invoice. I just changed our account numbers to xx as it is of no concern to anybody here. Hope it helps # Footer $pdf->SetMargins(15, 27, 15); // left, top, right $pdf->SetAutoPageBreak(TRUE, 5); // TRUE, margin down $pdf->SetFooterMargin(5); // $pdf->SetFooterFont(array('arial', '', ); // @array font, type (B, I, BI), size // $pdf->SetFooterData($CONFIG["Domain"] . " - ".$_LANG["page"]." {pg} / {nb}"); $pdf->setPrintHeader(false); $pdf->setPrintFooter(true); // Factuur footer $pdf->SetXY(15,-15); # Set Location //Set font $pdf->SetFont('Arial', '', 6.5); # Use 6.5pt Text $pdf->SetTextColor(128); //Centered text in a framed 80*5 mm cell and line break $pdf->MultiCell(180, 3, "Bilderdijklaan 112 A - 3723 DG Bilthoven\nKvK 30191573 - BTW nr: NL.xxxxxxxxx.B.01 - Postbank xxxxxx - SWIFT / BIC code PSTBNL21 - IBAN NL 10 PSTB 000x xxxx xx\nOp al onze offertes, leveringen en diensten zijn onze Algemene Voorwaarden van toepassing, deze zijn altijd beschikbaar op http://www.dutch-net.nl", 0, 'C'); 0 Quote Link to comment Share on other sites More sharing options...
WebGuyz Posted March 30, 2008 Share Posted March 30, 2008 Thanks dutchnet!! Very usefull post. 0 Quote Link to comment Share on other sites More sharing options...
HostRW Posted March 30, 2008 Share Posted March 30, 2008 Thanks dutchnet!! Very usefull post. I agree, thank you for the great info! 0 Quote Link to comment Share on other sites More sharing options...
dutchnet Posted March 30, 2008 Share Posted March 30, 2008 ur most welcome of course 0 Quote Link to comment Share on other sites More sharing options...
lahost Posted April 2, 2008 Share Posted April 2, 2008 Hido you mean add it to the PDF? or the basic invoice template? You could edit pdfconfig.php add a few Write() lines in if you want to add a perminate note there (company terms for example) Or the invoice template in your skins folder you could add some information there. If im barking up the wrong tree and thats nothing like you ment. sorry I tried this but unfortunatelly nothing happend. Thanks. 0 Quote Link to comment Share on other sites More sharing options...
plateaultd Posted August 25, 2009 Share Posted August 25, 2009 FYI - the pdf invoice template is now located in the active template folder. e.g. /templates/default/invoicepdf.tpl 0 Quote Link to comment Share on other sites More sharing options...
SilverNodashi Posted August 26, 2009 Share Posted August 26, 2009 The easier way around this problem is to add the noted to the invoice email template 0 Quote Link to comment Share on other sites More sharing options...
equipc Posted August 26, 2009 Share Posted August 26, 2009 If some people are interested, I can look to create an addon to do this... Just send me a PM ;-) 0 Quote Link to comment Share on other sites More sharing options...
jmashweb Posted September 7, 2009 Share Posted September 7, 2009 It doesn't sound like a professional program if you will need to edit templates to add in a message for a few days... There just has to be an option in the program to do that.I am speaking about temporary messages (which one might want to change every few days), not about permanent one off additions (which would be no problem changing it in the templates). Think about quickly adding a special server offer to every invoice for a week. If you have to go and edit the templates, that's way to much bother. First you have to know exactly which template to edit, you have to figure out how to get things on the right place, and if you mess up the whole template doesn't work... I think this just has to be added as a feature!!! Just a thought, if you wanted to change a message every few days on more than one type of invoice, couldn't you insert a php include into the different files? then whenever you want to change the message you just need to edit one php file to change them all. Im not sure if this would work with whmcs or the emails tho Joe 0 Quote Link to comment Share on other sites More sharing options...
gmorales Posted August 17, 2010 Share Posted August 17, 2010 Thank you dutchnet !!! GM 0 Quote Link to comment Share on other sites More sharing options...
easyhosting Posted August 17, 2010 Share Posted August 17, 2010 I agree.I need to add basic company information such as ABN (Australian Business Number) and other references required by law here in Australia. Not sure if this is catered for in the current system. Good morning, My name is Tony, I am a Noob! Kind regards Tony HI simple do what i did for my VAT reg in the UK goto your admin area, setup, general setting and in the pay to text area, where you have your business name and address, just add your ABN etc under your address, this will then display in all invoices and pdf invoices. 0 Quote Link to comment Share on other sites More sharing options...
sophia9rev Posted September 10, 2010 Share Posted September 10, 2010 thanks for the great tips....i need to read this forum during the weekend 0 Quote Link to comment Share on other sites More sharing options...
copilu_cc Posted October 24, 2010 Share Posted October 24, 2010 Hi, I don't find the pdfconfig.php file in "includes" folder. I have the 4.3.1 version of WHMCS. Where i can find this file? Thanks, Copilu_cc 0 Quote Link to comment Share on other sites More sharing options...
striddy Posted October 24, 2010 Share Posted October 24, 2010 I don't find the pdfconfig.php file in "includes" folder. I have the 4.3.1 version of WHMCS. Where i can find this file? http://wiki.whmcs.com/PDF_Invoice 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.