Schedule A Live Demo - Click Here to Reserve Your Spot Now

Add currencies in total to words feature

You are here:
Estimated reading time: < 1 min

If you are using total to words in your transactions you need to add the currency words manually into the translation.

The CRM comes with 2 predefined currency names that are already added to the converter. If you added your own currency you need to add this also to the total to words converter.

You need to add your currency database name and the currency string that will be output inside the invoice/estimate.

In this example, we will add British Pound to the converter.

Create a file with the name my_functions_helper.php in application/helpers/ and add the following code:

function add_total_to_words_currency($currencies){
    $currencies['GBP'] = 'British Pounds';

    return $currencies;
}

hooks()->add_filter('before_number_format_render_languge_currencies','add_total_to_words_currency');

Note that the GBP is the same as the name we have set up inside the CRM (showed in the image);

Was this article helpful?
Dislike 0
Views: 33