Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter heyyitzpat

    (@heyyitzpat)

    I put the above code through two PHP lint syntax checker and there were no errors found. In addition, I counted the number of left curly braces (6) and it matches with the number of right curly braces (6).

    Maybe the problem is here:
    require_once (OPTIONS_FRAMEWORK_URL . ‘options-framework.php’);

    Comment out:
    // require_once (OPTIONS_FRAMEWORK_URL . ‘options-framework.php’);

    Replace with this:
    $thePath = OPTIONS_FRAMEWORK_URL . ‘options-framework.php’;
    echo “THE PATH IS: ” . $thePath;
    require_once($thePath);
    Is $thePath a valid path? Is the file you have corrupted? Delete functions.php and upload it again.

    THIS must have fixed it. I replaced what you said to do, and now its working!!!!!! Thank you!!!!!!

    Thread Starter heyyitzpat

    (@heyyitzpat)

    The issue is Parse error: syntax error, unexpected ‘{‘ in /home/******/public_html/wp-content/themes/blackfyre/themeOptions/functions.php on line 1

    The theme is Blackfyre

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