I think I found the problem.
Few days ago I was looking for a way to include a custom header using php include.
I was told that the best way is to define a new plug-in and to call it on global_start. This is what I did
PHP Code:
ob_start();
include('../header_top.php');
$my_header = ob_get_contents();
ob_end_clean();
Then on the header template I call the $my_header variable.
I am guessing that the ob_get_contents() causing this problem.
So back to start.
How do I include a php file not using this method.
Thanks,
anyone can help on this please ?