get_report( 'overview' ); $bounce_rate = isset( $report['data']['infobox']['bounce']['value'] ) ? $report['data']['infobox']['bounce']['value'] : 0; if ( $bounce_rate ) { $is_em = function_exists( 'ExactMetrics' ); $learn_more_url = 'https://www.monsterinsights.com/how-to-reduce-bounce-rate/'; $notification['title'] = sprintf( /* translators: Bounce rate. */ __( 'Your Website Bounce Rate is Higher Than %s', 'google-analytics-for-wordpress' ), $bounce_rate ); // Translators: Bounce rate notification content. $notification['content'] = sprintf( __( 'Your site\'s bounce rate is %1$s. Double check your site is working properly and be sure it loads quickly. %2$sHere%3$s are some points to remember and steps to follow to get your bounce rates back to manageable levels.', 'google-analytics-for-wordpress' ), $bounce_rate, '', '' ); $notification['btns'] = array( 'view_report' => array( 'url' => $this->get_view_url( 'monsterinsights-report-infobox-bounce-rate', 'monsterinsights_reports' ), 'text' => __( 'View Report', 'google-analytics-for-wordpress' ), ), ); if ( ! $is_em ) { $notification['btns']['learn_more'] = array( 'url' => $this->build_external_link( $learn_more_url ), 'text' => __( 'Learn More', 'google-analytics-for-wordpress' ), 'is_external' => true, ); } return $notification; } return false; } } // initialize the class new MonsterInsights_Notification_Bounce_Rate();