Skip to content

Commit 5d342aa

Browse files
committed
fix lower limit condition when to show upgrade notice
1 parent e482016 commit 5d342aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

inc/admin.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -675,7 +675,7 @@ public function should_show_upgrade() {
675675
if ( $visitors_limit === 0 ) {
676676
return false;
677677
}
678-
if ( $visitors_left > 2000 ) {
678+
if ( $visitors_left > 300 ) {
679679
return false;
680680
}
681681

0 commit comments

Comments
 (0)