Bounce Rate (Fathom Analytics) in Pro Reports needs to be multiplied by 100

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

Hey @manuh

Thanks for reporting this to us.

I’ve managed to reproduce it and passed it along to our development team.

It will be fixed in the next release.

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.