• We are planning to use this plugin in our environment and while it operates fine with php 7.4.3 installed it throws errors when using php 8.0.0.

    Are there any plans to support php 8? If php 8 is supposed to be supported let me know how I can submit the php errors I am seeing.

    Thanks!

Viewing 1 replies (of 1 total)
  • Thread Starter althe3rd

    (@althe3rd)

    After looking at the warning it throws its actuallly a really simple fix. Just change line 472 in functions/admin.php from this:

    value=”<?php echo esc_attr( $options[ $args[‘name’] ] ); ?>”

    to this:

    value=”<?php if($options) { echo esc_attr( $options[ $args[‘name’] ] ); } ?>”

    Hope this helps!

    • This reply was modified 2 years, 2 months ago by althe3rd.
Viewing 1 replies (of 1 total)
  • The topic ‘PHP 8 Support?’ is closed to new replies.