• Resolved Kamalpreet Singh

    (@boyka_dhaliwal)


    Hello
    I am using your plugin and it is working beyond expectations. I love that. Thank you for such a good service.
    But I need a little bit of assistance with my basic requirement.
    All I want is to update the Currency symbol of Malaysian Ringgit RM to MYR
    so on the front-end, every user will see the amount in MYR100.00 instead of RM100.00
    I already configured the settings from the dashboard, https://prnt.sc/11wvdsn

    I really appreciate in advance your quick response.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author WP Travel Engine

    (@wptravelengine)

    Hello @boyka_dhaliwal,

    Thank you for the feedback on the WP Travel Engine plugin.

    Regarding your query, we do not have a direct option to define the currency symbol for the frontend as of now from the Admin Dashboard. However, you can still change the currency symbol using the available filter in the plugin using the following code snippet:

    function wpte_custom_filter_currency_symbols( $symbol_array ) {
    
        $symbol_array['MYR'] = 'MYR';
    
        return $symbol_array;
    }
    
    add_filter( 'wp_travel_engine_currency_symbols', 'wpte_custom_filter_currency_symbols' );

    Add the code snippet to your child theme’s functions.php file and it should change the currency symbol as per your requirements.

    If you have any queries further, please feel free to write back.

    Regards.

    Thread Starter Kamalpreet Singh

    (@boyka_dhaliwal)

    It worked. Thanks a lot. You are Spiderman for NYC now.

    Plugin Support WP Travel Engine Support

    (@wptravelenginesupport)

    Hi @boyka_dhaliwal,

    We are glad that your issue is resolved.

    To help us continue our high quality of service and motivate our team, we request you to leave us your review on www.remarpro.com.

    Best Regards.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Need to update Currency Symbol for specific Country’ is closed to new replies.