• Resolved tallhat

    (@tallhat)


    hi, great plugin – thank you!
    client has asked if there’s any way of hiding the currency symbol. would it be possible to add ‘NONE’ to the currency position option (drop down). you can config for currency symbol for before or after the price, but can’t see a simple way of showing NO currency symbol – stylistically quite a few restaurants do this now.
    any change of adding that as a feature request? thanks.

Viewing 1 replies (of 1 total)
  • Plugin Contributor motopress

    (@motopress)

    Hi @tallhat,

    You may try to add the code below to functions.php file of your theme in order to remove the currency symbol

    function heme_remove_mprm_currency( $currency_symbol) {
         $currency_symbol = ' ';
         return $currency_symbol;
    }
    add_filter('mprm_currency', 'heme_remove_mprm_currency', 10, 2);
Viewing 1 replies (of 1 total)
  • The topic ‘Hide currency symbol’ is closed to new replies.