Question: Change Invoice Status From Image To Text

Change Invoice Status From Image To Text

Hello there, I made a wrong post in a wrong section. I need to change the invoice status from top image to a simple text, but i cant figure it out how to do so. I did use this code ``` <?

FH

Florin Hangu

Asked

Hello there,

I made a wrong post in a wrong section. I need to change the invoice status from top image to a simple text, but i cant figure it out how to do so.

I did use this code <?= lang("invoice") . " " . $inv->status; ?> but the invoice status is still in english, and i use my language Romania, partial translated.

  • MS

    Mian Saleem

    Answered

    Hello,

    You asked at wrong item again 😦

    As you can see the status is saved in database. You can change the line as

    <?= lang("invoice") . " " . lang($inv->status); ?>
    

    and then add the Paid and other status as keys to your language file and translate.

    Thank you

  • Login to Reply