Plugin Directory

Changeset 2996967


Ignore:
Timestamp:
11/16/2023 11:00:43 AM (2 years ago)
Author:
eurisko
Message:

v2.3.3 (Nov 06, 2023)

  • Remove the decimal point to show review percentage.
Location:
reviews-sorted/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • reviews-sorted/trunk/README.txt

    r2986785 r2996967  
    55Tested up to: 6.3.2
    66Requires PHP: 7.2
    7 Stable tag: 2.3.2
     7Stable tag: 2.3.3
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    7474== Changelog ==
    7575
    76 = v2.2 (May 25, 2022) =
    77 * Official plugin release.
     76= v2.3.3 (Nov 06, 2023) =
     77* Remove the decimal point to show review percentage.
     78
     79= v2.3.2 (Oct 31, 2023) =
     80* Added Latest WordPress Combability.
    7881
    7982= v2.3.1 (Sept 06, 2022) =
    8083* removed schema microdata from indvidual reviews
    8184
    82 = v2.3.2 (Oct 31, 2023) =
    83 * Added Latest WordPress Combability.
     85= v2.2 (May 25, 2022) =
     86* Official plugin release.
  • reviews-sorted/trunk/reviews-sorted.php

    r2986785 r2996967  
    66 * Author: Reviews Sorted
    77 * Author URI: https://reviewssorted.com/
    8  * Version: 2.3.2
     8 * Version: 2.3.3
    99 * Text Domain: reviews-sorted
    1010 * Domain Path: /languages
  • reviews-sorted/trunk/templates/reviews-average.php

    r2986785 r2996967  
    3131
    3232$FiveStarPercentage = (100*$FiveStarCount)/$data['totalReviews'];
    33 $FiveStarPer = number_format($FiveStarPercentage , 2);
     33$FiveStarPer = number_format($FiveStarPercentage , 0);
    3434
    3535    $average = number_format($average, 1);
Note: See TracChangeset for help on using the changeset viewer.