Hi @lylesmoviefiles
Thanks for reaching out and sharing the screenshot. From the screenshot shared, I am unable to see any large autoloaded options from FooGallery.
With that said, if there are any and your web host is concerned regarding the options from FooGallery I will share some recommendations you or your web host can implement:
1. Disabling autoload for large options
If there are large autoload options from FooGallery identified by your web host that they feel would cause issues, they can run the following query to prevent these options from loading on every page request
UPDATE wp_options
SET autoload = 'no'
WHERE option_name IN ('replace with the option_name with large sizes');
2. Cleaning Up the Database
You or your we host can clean up the database to prevent the large autoloaded options from loading on every page request, improving performance. You can use a plugin like WP-Optimize or run the following querry:
DELETE FROM wp_options WHERE option_name LIKE 'replace with the option_name with large sizes';
In the meantime we will also look into this internally and analyse if any optimisations are needed. Thanks