This SQL request call all time and overload my server : SELECT meta_value FROM wp_sitemeta WHERE meta_key = ‘wp_installer_network’ AND site_id = 1

What is it It’s most likely a part of the WPML. This is based on a quick copy paste of wp_installer_network into the github search box. There’s also a small chance this is the Types plugin, but you mentioned you had a multilingual plugin installed. No references to wp_installer_network are found in WordPress itself. and … Read more

In WordPress how do you remove render-blocking CSS manually without a plugin?

For example I have a render-blocking CSS with this URL according to PageSpeed Insights: https://groupcbm.com/wp-content/themes/deon/assets/css/grid.min.css?ver=6.2, how do I deque and deregister this? Locate where in the theme it registers and enqueues this file Once located, note down the handle it uses Remove it, by calling wp_dequeue_style or wp_dequeue_script in a theme/plugin/etc make sure your dequeuing … Read more