[ad_1]
Hi,
thanks for your post, and sorry for the trouble.
This is actively being worked on. It appears that the Freemius SDK still has a bug that prevents this, but I hope that they’ll be able to fix this soon.
Sorry for the inconvenience 🙁
Regards,
Tobias
Thread Starter
janh2
(@janh2)
Thank you for the prompt reply. I’m sure it’s not easy, Freemius is huge. The main class weighing in at 26k lines, opcache is really helpful here.
In the mean time, I’ve used the following code to silence it (in each blog’s context)
$fs = get_option("fs_accounts");
if(is_array($fs)) {
$fs["plugin_data"] = $fs["plugin_data"] ?? [];
$fs["plugin_data"]["tablepress"] = $fs["plugin_data"]["tablepress"] ?? [];
if(!is_array($fs["plugin_data"]["tablepress"]["is_anonymous"] ?? null)) {
$fs["plugin_data"]["tablepress"]["is_anonymous"] = [
"is" => true,
"timestamp" => time(),
"version" => "2.0.4",
];
update_option("fs_accounts", $fs);
}
}