Hello, I was taking a look at the performance of my site and I found this data.
As I found in another discussion, I already have
turned off adding unique timestamps, but that hasn’t changed. How can I do to reduce these values?? Thank you
Autoload top list:
# Option Name Size
1 avia_instagram_widgets_cache 588619
2 display_posts_site_data_436ca00f4f9987dab3ab4 174193
3 elementor_pro_remote_info_api_data_3.2.0 127335
4 elementor_pro_remote_info_api_data_3.2.1 127335
5 elementor_pro_remote_info_api_data_3.1.1 125050
6 elementor_pro_remote_info_api_data_3.1.0 124892
7 elementor_pro_remote_info_api_data_3.0.10 124497
8 exactmetrics_notifications 70609
9 fs_accounts 63743
10 wphb_scripts_collection 43174
11 redux_builder_amp 42527
12 rw_api_cache 40832
13 avia_options_enfold 22130
14 avia_options_enfold_child 21492
15 33457c0ad9556844f4bf32cfcb83cae5 19985
16 wphb_styles_collection 19048
17 rewrite_rules 18642
18 rw_options 16724
19 widget_text 16524
20 wp_user_roles 14549
Hey eleonorabienno,
Thank you for the inquiry.
Are you still using the Instagram widget? If not, then you can safely delete the avia_instagram_widgets_cache entry from the database.
If you want to delete the entry, add this code in the functions.php file.
function avf_instagram_disable_cron() {
return false;
}
add_action('wp_head', function() {
delete_option('avia_instagram_widgets_cache');
});
add_filter('avf_instagram_activate_cron', 'avf_instagram_disable_cron', 10);
Purge the cache or disable the cache plugin temporarily, then refresh the page a few times. Delete the snippet above afterwards.
IMPORTANT: Please make sure to create a site backup first before doing the steps above.
Best regards,
Ismael