Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • 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

    Actually its Line 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

Viewing 2 replies - 1 through 2 (of 2 total)