Jump to content

Remove the offending big red UNPAID


ils

Recommended Posts

  • 2 weeks later...
  • WHMCS Technical Analyst II

Hello,

Thank you for your post!

If you wish to modify the PDF version of the invoice, you can do so by modifying the 'invoicepdf.tpl' file.

If you wish to modify the invoice when viewed in a browser, you need to modify the 'invoice.css' file within your active client area theme. For example, the font size is controlled by this code:

.invoice-container .invoice-status {
    margin: 20px 0 0 0;
    text-transform: uppercase;
    font-size: 24px;
    font-weight: bold;
}

The colour itself is controlled by this code:

.unpaid {
    color: #cc0000;
}

I hope this helps.

Link to comment
Share on other sites

  • WHMCS Technical Analyst II

Hello,

Thank you for your response!

I will include the location to these files below, this is based upon the 'six' theme shipped by default with WHMCS V7, it may differ if you are using a custom theme.

/whmcs/templates/six/invoicepdf.tpl

/whmcs/templates/six/css/invoice.css

The wording is controlled by the language file. Specifically the following code:

$_LANG['invoicesunpaid'] = "Unpaid";

If you wish to change this, you can do so using language overrides, for more information, please see - https://docs.whmcs.com/Language_Overrides

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use & Guidelines and understand your posts will initially be pre-moderated