Hi,
I am trying to personalize some pages, but the personalize page under appearance is not loading what can I do to fix this?
![enter image description here](https://dl.dropboxusercontent.com/u/406459/Screen%20Shot%202015-06-05%20at%201.15.37%20PM.png "enter image title here")
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