Make the chnages on Lines 540 and 547
Incorrect
if (is_home() || (function_exists(‘is_frontpage’) && is_frontpage()) || (function_exists(‘is_front_page’) && is_front_page()) {
Correct
if (is_home() || (function_exists(‘is_frontpage’) && is_frontpage()) || (function_exists(‘is_front_page’) && is_front_page()) ) {
I had the same issue on my Blog Jedi-star.com