• Resolved carolineorlando

    (@carolineorlando)


    Hey!

    AMAZING plugin! I was just about to jump into the Google Analytics API and hard code this myself, figured I’d see if something existed first (a month ago nothing did!) and voila – you have created the magic! Great work!

    For counts that output put in the thousands (ie, 203425) there appears to be an extra nonbreaking line space (after clusters of 3) – like this: 203 425. I’ve been able to “remove” it via the below:

    $postviews = gapp_get_post_pageviews();
    $output = preg_replace("/\b(\d+)\s+(?=\d+\b)/", "$1", $postviews);
    echo $output;

    And to add a comma where appropriate via english_format

    $postviews = gapp_get_post_pageviews();
    $output = preg_replace("/\b(\d+)\s+(?=\d+\b)/", "$1", $postviews);
    echo number_format($output);

    Just incase anyone is trying to do the same – the above works.

    https://www.ads-software.com/plugins/google-analytics-post-pageviews/

Viewing 1 replies (of 1 total)
  • Plugin Author maximevalette

    (@maximevalette)

    Hey Caroline,

    Thanks a lot for your kind words! I’m happy to know that my plugin is used ??

    You’re right, for some reason I left the number_format function with fixed (European) parameters.

    I updated the plugin with the international number formatting function provided by WordPress, so you won’t have to do your hack it should work right out of the box. Let me know!

    Cheers

Viewing 1 replies (of 1 total)
  • The topic ‘Nonbreaking space within large numbers’ is closed to new replies.