• Resolved dmarin

    (@dmarin)


    Hi there!

    After recent updates of PHP to 8.3 and WP to 6.6.1 I am constantly getting PHP compatibiliy error that is being recorder in error log:

    PHP Deprecated: Creation of dynamic property CUAR_NotificationsAdminInterface::$no_addon is deprecated in /home/tahoce47/public_html/wp-content/plugins/customer-area-notifications/src/php/helpers/notifications-admin-interface.class.php on line 22

    Why would this be? Is plugin not compatible with the PHP 8.3 or something else? Any suggestions?

    • This topic was modified 3 months, 4 weeks ago by dmarin.

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Thomas

    (@tlartaud)

    Hello,

    Sorry for the delay.

    Thank you for the report.

    You can fix this error by editing the file wp-content/plugins/customer-area-notifications/src/php/helpers/notifications-admin-interface.class.php, line 17:

    Change this:

        /** @var CUAR_NotificationsAddOn */
    private $notifications_addon;

    To this:

        /** @var CUAR_NotificationsAddOn */
    private $no_addon;

    This will be fixed in the next updates.

    Best regards.

    Thread Starter dmarin

    (@dmarin)

    Thank you for your reply. I have temporarily changed PHP back to 8.2, but I am glad that it will be fixed in the next update.

Viewing 2 replies - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.