Viewing 9 replies - 1 through 9 (of 9 total)
  • Plugin Author Bas Elbers

    (@baaaaas)

    There needs to be a font configured for this symbol. Do you know a light weight font?

    Thread Starter Webmaster_crawl

    (@webkingashu)

    Hi,

    Will a ttf version suffice? or we need to setup a webfont too?

    Here is the ttf link and refernce

    https://www.finance.kar.nic.in/others/rupee.htm

    Also, if this is complex, how can we show english letters instead of special symbol

    for example Rs 1500 only (See only Letter R and s that will also suffice )

    ??

    Plugin Author Bas Elbers

    (@baaaaas)

    Will add the font to the next update. ??
    In the future it will support multilanguage.

    Hi, I am using the latest version still the Rs. symbol does not appear

    Me too having this trouble: INR symbol not showing.

    Also, messed up with theme once I used some editing in function . php as detailed below. The output is all like this:
    —————–
    Warning: Cannot modify header information – headers already sent by (output started at /home/dishu1/public_html/wp-content/themes/wp-forge/functions.php:835) in /home/dishu1/public_html/wp-content/plugins/opentickets-community-edition/opentickets.php on line 1010

    Warning: Cannot modify header information – headers already sent by (output started at /home/dishu1/public_html/wp-content/themes/wp-forge/functions.php:835) in /home/dishu1/public_html/wp-content/plugins/opentickets-community-edition/opentickets.php on line 1011

    Warning: Cannot modify header information – headers already sent by (output started at /home/dishu1/public_html/wp-content/themes/wp-forge/functions.php:835) in /home/dishu1/public_html/wp-content/plugins/opentickets-community-edition/opentickets.php on line 1012

    Warning: Cannot modify header information – headers already sent by (output started at /home/dishu1/public_html/wp-content/themes/wp-forge/functions.php:835) in /home/dishu1/public_html/wp-content/plugins/opentickets-community-edition/inc/core/my-account-takeover.class.php on line 84
    —————–

    Code that I added (from this forum discussion)
    —————-
    add_filter( ‘woocommerce_currencies’, ‘add_inr_currency’ );
    add_filter( ‘woocommerce_currency_symbol’, ‘add_inr_currency_symbol’ );

    function add_inr_currency( $currencies ) {
    $currencies[‘INR’] = ‘INR’;
    return $currencies;
    }

    function add_inr_currency_symbol( $symbol ) {
    $currency = get_option( ‘woocommerce_currency’ );
    switch( $currency ) {
    case ‘INR’: $symbol = ‘Rs.’; break;
    }
    return $symbol;
    }

    ———————–

    Please guide…

    Regards

    Arvind

    Plugin Author Bas Elbers

    (@baaaaas)

    @vipul Agarwal latest update fixed the Rs symbol should work now. Let me know if it works OK.
    @arvindwp this plugin has nothing to do with the errors you are posting. Please try the author of the opentickets plugin you are using.

    Thanks Bas, It is perfect now…
    (I have also been able to fix that header information already sent..– issue…)
    Regards,
    Arvind

    Plugin Author Bas Elbers

    (@baaaaas)

    Great! ??
    Thanks for letting me know.

    Would you be so kind to rate the plugin? It would support future development a lot! Many thanks in advance. ??

    Great!!

    Thanks Bas, would certainly rate your plugin!!

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘Currency Symbol for INR (Rupees) Not Showing in PDF’ is closed to new replies.