Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author Konstantinos Kouratoras

    (@kouratoras)

    No, unfortunately, this is not currently supported.

    This function actually is currently supported.

    It will require you to make one minor change to a javascript file, and then reupload that file replacing the one on your server.

    Go to your plugins folder wp-content/plugins/

    and navigate to the gaugepress folder

    wp-content/plugins/gaugepress

    open up the js folder

    so you should now be in

    wp-content/plugins/gaugepress/js

    open up justgage.js with a javascript editor (dreamweaver works)

    scroll down to line 292 you should see this

    // formatNumber: boolean
        // formats numbers with commas where appropriate
        formatNumber : obj.kvLookup('formatNumber', config, dataset, false)
      };

    Change that false to true so it should now read like this

    // formatNumber: boolean
        // formats numbers with commas where appropriate
        formatNumber : obj.kvLookup('formatNumber', config, dataset, true)
      };

    All of your numbers will now have appropriate comma separators.

    The plugin developer should be able to make this change, or add in an option to change this in the shortcodes.

    Plugin Author Konstantinos Kouratoras

    (@kouratoras)

    Thank you for the feedback. I updated the plugin to version 0.3.2 and added a “format” option to format numbers with commas where appropriate. Update and enjoy!

    Thread Starter obismarck

    (@obismarck)

    Thank you very much! ??
    Perfect!

    Plugin Author Konstantinos Kouratoras

    (@kouratoras)

    Glad to hear that! A review would be really appreciated!

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘thousands separator’ is closed to new replies.