• I’m getting overwhelmed with deprecated notices in my WP Debug log. The log is getting huge… Fast!
    Here’s the notice…

    PHP Deprecated: Required parameter $options follows optional parameter $args in /path/wp-content/plugins/testimonials-widget/includes/libraries/testimonials-widget/includes/libraries/aihrus-framework/includes/class-aihrus-widget.php on line 144

    I’m using PHP 8

    Please fix asap!

Viewing 1 replies (of 1 total)
  • I just switched to PHP 8, and my log started filling up with this same notice.

    This code change in the referenced file seems to have stopped to notices.
    On line 144 change:
    public function display_setting( $args = array(), $options ) {
    to
    public function display_setting( $args = array(), $options = '') {

    Hope this helps you…and hope that the plugin authors can implement an official fix!

Viewing 1 replies (of 1 total)
  • The topic ‘Deprecated notices’ is closed to new replies.