Conversation
supportHi 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 1 year, 10 months ago by dmarin . The page I need help with: [ log in to see the link]
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.
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.
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.
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.