This error normally generate due to extra space outside <?php ?> braces. If you can’t find spaces, you can…
Try below code…
In your theme’s functions.php
<?php
ob_start();
your functions and other code here.....
ob_clean();
?>
add ob_start(); at top of file and ob_clean(); at bottom of file.
Hope it works for you…