• Resolved uthpalasim

    (@uthpalasim)


    Hi, I am using this plugin and I want to change currency?. I am from Sri Lanka. So I want to change and show it as ‘Rs’.
    Currently it is showing as ‘ Sri Lankan rupee ??’ .
    I want to change it as ‘Rs’

Viewing 1 replies (of 1 total)
  • Plugin Support Ali Akbar Reyad

    (@alireyad)

    Hi,
    Please, add following code in child theme functions.php file to change currency symbol for Sri Lanka.

    function rt_rtcl_get_currency_symbols_cb( $symbols ) {
    $symbols['LKR'] = 'RS';
    return $symbols;
    }

    add_filter( 'rtcl_get_currency_symbols', 'rt_rtcl_get_currency_symbols_cb' );

    Thank you

Viewing 1 replies (of 1 total)
  • You must be logged in to reply to this topic.