Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Contributor Kshirod Patel

    (@kshirod-patel)

    Hello,

    Can you please tell which version of RestroPress are you using?

    Thread Starter vanminh888

    (@vanminh888)

    Yes, I am using RestroPress version 2.3. I found out that I have to f5 again to display the number of items ??

    Thread Starter vanminh888

    (@vanminh888)

    Another extra question. Because the plugin does not support my country currency, I have added the currency to Function. However I do not know how to delete .00 behind it. Can you help me.

    Plugin Contributor Kshirod Patel

    (@kshirod-patel)

    Hello,

    To remove decimal numbers from your currency you can use this in your active theme functions.php file

    add_filter( 'rpress_currency_decimal_count', 'rpress_remove_decimal' );
    function rpress_remove_decimal( $decimals ) {
      $decimals = 0;
      return $decimals;
    }
    Thread Starter vanminh888

    (@vanminh888)

    Hope to have more updates in the future, can work with cache plugin and auto refresh the cart :)).
    https://uphinh.org/image/u50ol7

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Error occurred when I deleted items in my cart’ is closed to new replies.