Please don't just say "latest version" - give a version number!pls update latest version
v2.0.4 [Nov 27, 2020]
-----------------------------
* Improved: Restrict Schema output on password-protected pages
* Improved: Hardened the security in some places in the plugin
* Fixed: Option to set the Video as family-friendly was not working in the Video Schema
* Fixed: Duplicate entries in the Video Sitemap
* Fixed: The option to add a new post type in the ToolSet plugin was not working
Big Thanks to @NullMaster for NULLING!![]()
v2.0.4 [Nov 27, 2020]
-----------------------------
* Improved: Restrict Schema output on password-protected pages
* Improved: Hardened the security in some places in the plugin
* Fixed: Option to set the Video as family-friendly was not working in the Video Schema
* Fixed: Duplicate entries in the Video Sitemap
* Fixed: The option to add a new post type in the ToolSet plugin was not working
Big Thanks to @NullMaster for NULLING!
=changelog=
v2.0.5 Nov 29, 2020
Improved: Made plugin compatible with the PHP 8.0
Improved: Plugin’s plan handling that was causing a conflict with the Analytics module as well
Improved: Update-check mechanism to help show the updates properly on every server
seo-by-rank-math-pro\includes\class-installer.php
if ( function_exists( 'as_unschedule_all_actions' ) ) {
$fetch_gap = 3;
// $fetch_gap = 1;
as_unschedule_all_actions( 'rank_math/analytics/daily_tasks' );
as_schedule_recurring_action( strtotime( 'tomorrow' ) + 180, DAY_IN_SECONDS * $fetch_gap, 'rank_math/analytics/daily_tasks' );
}
seo-by-rank-math-pro\includes\modules\analytics\class-analytics.php
public function data_retention_period() {
return 'pro' === Admin_Helper::get_user_plan() ? 180 : 1000;
// return 3650;
}
public function fetch_gap() {
return 3;
// return 1;
}
wp-content\plugins\seo-by-rank-math-pro\includes\modules\analytics\class-keywords.php
$args = wp_parse_args(
$args,
[
'dimension' => 'query',
'order' => 'DESC',
'orderBy' => 'diffPosition',
'limit' => 'LIMIT 20000',
// 'limit' => 'LIMIT 100000',
'sub_where' => " AND query IN ( SELECT keyword from {$wpdb->prefix}rank_math_analytics_keyword_manager )",
]
);