Hi,
I am trying to personalize some pages, but the personalize page under appearance is not loading what can I do to fix this?

1 Answers
Hi,
Firstly, please deactivate all plugins to see if this resolves the problem. If this works, re-activate the plugins one by one and let us know if you find the problematic plugin(s). Maybe there is a conflict in plugins.
Also, you can open the /wp-includes/functions.php. Find the line 3279
Replace the following code:
function wp_ob_end_flush_all() {
$levels = ob_get_level();
for ($i=0; $i<$levels; $i++)
ob_end_flush();
}
With new code:
function wp_ob_end_flush_all() {
//$levels = ob_get_level();
//for ($i=0; $i<$levels; $i++)
// ob_end_flush();
}
Hope this helps !
Please login or Register to submit your answer