You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm encountering multiple deprecation warnings in the Oxygen Gutenberg and Oxygen WooCommerce plugins due to the creation of dynamic properties. These warnings occur since PHP 8.2 deprecated dynamic property creation, which affects compatibility.
Error Log:
PHP Deprecated: Creation of dynamic property OxygenGutenbergPluginUpdater::$prefix is deprecated in /wp-content/plugins/oxygen-gutenberg/admin/includes/updater/edd-updater.php on line 19
PHP Deprecated: Creation of dynamic property OxyWooCommerce::$buttons_settings is deprecated in /wp-content/plugins/oxygen-woocommerce/OxyWooCommerce.php on line 40
...
The issue occurs across multiple files, including:
I'm encountering multiple deprecation warnings in the Oxygen Gutenberg and Oxygen WooCommerce plugins due to the creation of dynamic properties. These warnings occur since PHP 8.2 deprecated dynamic property creation, which affects compatibility.
Error Log:
PHP Deprecated: Creation of dynamic property OxygenGutenbergPluginUpdater::$prefix is deprecated in /wp-content/plugins/oxygen-gutenberg/admin/includes/updater/edd-updater.php on line 19
PHP Deprecated: Creation of dynamic property OxyWooCommerce::$buttons_settings is deprecated in /wp-content/plugins/oxygen-woocommerce/OxyWooCommerce.php on line 40
...
The issue occurs across multiple files, including:
Steps to Reproduce:
Proposed Solution: Replace dynamic property assignment with properly defined class properties to ensure compatibility with PHP 8.2.
Environment:
WordPress Version: 6.7.1
PHP Version: 8.2
Plugin Versions:
The text was updated successfully, but these errors were encountered: