Hey,
the bounce rate in my reports are showing as “0.83%” instead of 83%.
I’ve fixed it temporary by changing line 246 in the “class-mainwp-pro-reports-data.php” from:
$output['fathom.bounce.rate'] = ( isset( $values['aggregates'] ) && isset( $values['aggregates']['bounce_rate'] ) ) ? self::format_stats_values( $values['aggregates']['bounce_rate'], true, true ) : 'N/A';
to
$output['fathom.bounce.rate'] = ( isset( $values['aggregates'] ) && isset( $values['aggregates']['bounce_rate'] ) ) ? self::format_stats_values( $values['aggregates']['bounce_rate']*100, true, true ) : 'N/A';
Thank you,
Manuel