• Resolved Dan Caragea

    (@dancaragea)


    You added %sK (plus %sM and %sB) to last update. In my language (and in all European countries) we don’t use these abbreviations. How can I get back to Views Count that was previously displayed?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Contributor wpvideogallery

    (@wpvideogallery)

    Thank you for bringing this to our attention.
    We appreciate your feedback and want to assure you that we’re working on a more flexible solution. We’ll be releasing an updated version with this behavior made optional by the end of this weekend.

    In the meantime, as a quick workaround, you can add the following PHP snippet to the bottom of your theme’s functions.php file:

    add_filter( 'aiovg_format_count', function( $formatted, $number ) {
    return number_format_i18n( $number );
    }, 10, 2 );

    This should resolve the issue for now. Please let us know if it works for you or if you need any assistance applying the fix.

    Thanks again for your patience and support!

    Thread Starter Dan Caragea

    (@dancaragea)

    Code work fine. Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)

You must be logged in to reply to this topic.