• Resolved rimas166

    (@rimas166)


    hi,
    i’ve got this message at the bottom of my homepage.

    Strict Standards: Accessing static property Flare_Model::$available_buttons as non static in C:\xampp\htdocs\wordpress\wp-content\plugins\flare\flare.php on line 921

    how can i fix this?

    https://ww.wp.xz.cn/plugins/flare/

Viewing 2 replies - 1 through 2 (of 2 total)
  • The message is shown, because $available_buttons is a static field and the code tries to read the field using ,,->” (I’ve just translated the message ;)).

    Just change (in flare.php:921)

    $available_buttons = $this->Button->available_buttons;

    into

    $Button = $this->Button;
    $available_buttons = $Button::$available_buttons;

    Thread Starter rimas166

    (@rimas166)

    this really helped… thank you

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

The topic ‘error message at frontpage’ is closed to new replies.