Remove Currency Sign on Price

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #523956
    April
    Guest

    Hi! Testing out your plugin for a restaurant website and would like to not have the currency sign in front of the price. Website will not be used for ecommerce, simply a menu of items.

    Is this possible?
    Thanks a ton.

    #524213
    J. Davis
    Keymaster

    Hi April,

    Yes, you can simply disable eCommerce option at plugin settings (Sell food and beverages online).

    Best regards,
    John

    #561924
    April
    Guest

    Yes, but doing that does not remove the currency symbol in front of the price. Any ideas?

    #564006
    J. Davis
    Keymaster

    Hi April,

    You can try to add a new currency but without adding a label. try to add the code below to functions.php file of your theme

    add_filter( 'mprm_currencies', 'add_my_currency' );
    
    function add_my_currency( $currencies ) {
         $currencies['TEST'] = __( 'Currency name', 'mprm' );
         return $currencies;
    }

    Then go to Restaurant Menu>Settings>Currency Settings and scroll the list of labels to the bottom. There you will find added currency. Select it and save changes.

    Best regards,
    John

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.