Hi there,
Here is a small fix that you can use in your theme.
Just edit your functions.php, and insert these lines:
add_action('admin_menu', '_tea_admin_menus');
function _tea_admin_menus()
{
//Remove custom post fields box
if (is_admin()) {
remove_meta_box('postcustom', 'page', 'normal');
remove_meta_box('postcustom', 'post', 'normal');
remove_meta_box('postcustom', 'product', 'normal');
}
}
In one of our cases, a website with 55k posts in DB and 785k comments, we’ve won 7sec per page.
Hope it helps.
Hi Jeremy,
Thank you for your feedback. The problem is solved.
Could you tell me why this disconnection happened please?
Thanks