Skip Navigation

[Resolved] Deprecated warnings for Types and Views with PHP 8.1 and 8.2

This is the technical support forum for Toolset - a suite of plugins for developing WordPress sites without writing PHP.

Everyone can read this forum, but only Toolset clients can post in it. Toolset support works 6 days per week, 19 hours per day.

This topic contains 2 replies, has 2 voices.

Last updated by Matthias 1 year, 4 months ago.

Author
Posts
#2540365

Hi!

I'm testing Toolset Types and Views Plugins with PHP 8.1 and 8.2 on my dev installation (no other plugins) and I get a lot of deprecated warnings:

With PHP 8.1.13:

Deprecated: Return type of WPV_Settings::offsetExists($offset) should either be compatible with ArrayAccess::offsetExists(mixed $offset): bool, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/wp-views/embedded/inc/wpv-settings.class.php on line 375
Deprecated: Return type of WPV_Settings::offsetGet($offset) should either be compatible with ArrayAccess::offsetGet(mixed $offset): mixed, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/wp-views/embedded/inc/wpv-settings.class.php on line 386
Deprecated: Return type of WPV_Settings::offsetSet($offset, $value) should either be compatible with ArrayAccess::offsetSet(mixed $offset, mixed $value): void, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/wp-views/embedded/inc/wpv-settings.class.php on line 401
Deprecated: Return type of WPV_Settings::offsetUnset($offset) should either be compatible with ArrayAccess::offsetUnset(mixed $offset): void, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/wp-views/embedded/inc/wpv-settings.class.php on line 411
Deprecated: Return type of Toolset_Settings::offsetExists($offset) should either be compatible with ArrayAccess::offsetExists(mixed $offset): bool, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/types-access/vendor/toolset/toolset-common/inc/toolset.settings.class.php on line 231
Deprecated: Return type of Toolset_Settings::offsetGet($offset) should either be compatible with ArrayAccess::offsetGet(mixed $offset): mixed, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/types-access/vendor/toolset/toolset-common/inc/toolset.settings.class.php on line 243
Deprecated: Return type of Toolset_Settings::offsetSet($offset, $value) should either be compatible with ArrayAccess::offsetSet(mixed $offset, mixed $value): void, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/types-access/vendor/toolset/toolset-common/inc/toolset.settings.class.php on line 258
Deprecated: Return type of Toolset_Settings::offsetUnset($offset) should either be compatible with ArrayAccess::offsetUnset(mixed $offset): void, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/types-access/vendor/toolset/toolset-common/inc/toolset.settings.class.php on line 268
Deprecated: strpos(): Passing null to parameter 0000001 ($haystack) of type string is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-includes/functions.php on line 7022
Deprecated: str_replace(): Passing null to parameter 0000003 ($subject) of type array|string is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-includes/functions.php on line 2162

With PHP 8.2 even more:

Deprecated: Return type of WPV_Settings::offsetExists($offset) should either be compatible with ArrayAccess::offsetExists(mixed $offset): bool, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/wp-views/embedded/inc/wpv-settings.class.php on line 375

Deprecated: Return type of WPV_Settings::offsetGet($offset) should either be compatible with ArrayAccess::offsetGet(mixed $offset): mixed, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/wp-views/embedded/inc/wpv-settings.class.php on line 386

Deprecated: Return type of WPV_Settings::offsetSet($offset, $value) should either be compatible with ArrayAccess::offsetSet(mixed $offset, mixed $value): void, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/wp-views/embedded/inc/wpv-settings.class.php on line 401

Deprecated: Return type of WPV_Settings::offsetUnset($offset) should either be compatible with ArrayAccess::offsetUnset(mixed $offset): void, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/wp-views/embedded/inc/wpv-settings.class.php on line 411

Deprecated: Creation of dynamic property WPV_Debug::$options is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/wp-views/embedded/inc/wpv-query-debug.class.php on line 20

Deprecated: Creation of dynamic property WPV_Debug::$depth is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/wp-views/embedded/inc/wpv-query-debug.class.php on line 21

Deprecated: Creation of dynamic property WPV_Debug::$log_array is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/wp-views/embedded/inc/wpv-query-debug.class.php on line 22

Deprecated: Creation of dynamic property WPV_Debug::$status is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/wp-views/embedded/inc/wpv-query-debug.class.php on line 23

Deprecated: Creation of dynamic property WPV_Debug::$total_memory is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/wp-views/embedded/inc/wpv-query-debug.class.php on line 24

Deprecated: Creation of dynamic property WPV_Debug::$show_type is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/wp-views/embedded/inc/wpv-query-debug.class.php on line 25

Deprecated: Creation of dynamic property WPV_WordPress_Archive_Frontend::$wpa_id is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/wp-views/embedded/inc/wpv-archive-loop.php on line 147

Deprecated: Creation of dynamic property WPV_WordPress_Archive_Frontend::$wpa_slug is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/wp-views/embedded/inc/wpv-archive-loop.php on line 148

Deprecated: Creation of dynamic property WPV_WordPress_Archive_Frontend::$wpa_type is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/wp-views/embedded/inc/wpv-archive-loop.php on line 149

Deprecated: Creation of dynamic property WPV_WordPress_Archive_Frontend::$wpa_name is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/wp-views/embedded/inc/wpv-archive-loop.php on line 150

Deprecated: Creation of dynamic property WPV_WordPress_Archive_Frontend::$wpa_data is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/wp-views/embedded/inc/wpv-archive-loop.php on line 151

Deprecated: Creation of dynamic property WPV_WordPress_Archive_Frontend::$wpa_settings is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/wp-views/embedded/inc/wpv-archive-loop.php on line 152

Deprecated: Creation of dynamic property WPV_WordPress_Archive_Frontend::$query is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/wp-views/embedded/inc/wpv-archive-loop.php on line 154

Deprecated: Creation of dynamic property WPV_WordPress_Archive_Frontend::$header_started is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/wp-views/embedded/inc/wpv-archive-loop.php on line 156

Deprecated: Creation of dynamic property WPV_WordPress_Archive_Frontend::$in_head is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/wp-views/embedded/inc/wpv-archive-loop.php on line 157

Deprecated: Creation of dynamic property WPV_WordPress_Archive_Frontend::$in_the_loop is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/wp-views/embedded/inc/wpv-archive-loop.php on line 159

Deprecated: Creation of dynamic property WPV_WordPress_Archive_Frontend::$loop_found is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/wp-views/embedded/inc/wpv-archive-loop.php on line 160

Deprecated: Creation of dynamic property WPV_WordPress_Archive_Frontend::$loop_has_no_posts is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/wp-views/embedded/inc/wpv-archive-loop.php on line 162

Deprecated: Creation of dynamic property WPV_WordPress_Archive_Frontend::$wpv_settings is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/wp-views/embedded/inc/wpv-archive-loop.php on line 164

Deprecated: Creation of dynamic property WPV_Sorting_Embedded::$valid_values is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/wp-views/embedded/inc/wpv-filter-order-by-embedded.php on line 47

Deprecated: Creation of dynamic property WP_Views_plugin::$view_ids is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/wp-views/embedded/inc/wpv.class.php on line 37

Deprecated: Creation of dynamic property WP_Views_plugin::$current_view is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/wp-views/embedded/inc/wpv.class.php on line 38

Deprecated: Creation of dynamic property WP_Views_plugin::$CCK_types is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/wp-views/embedded/inc/wpv.class.php on line 39

Deprecated: Creation of dynamic property WP_Views_plugin::$widget_view_id is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/wp-views/embedded/inc/wpv.class.php on line 40

Deprecated: Creation of dynamic property WP_Views_plugin::$view_depth is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/wp-views/embedded/inc/wpv.class.php on line 41

Deprecated: Creation of dynamic property WP_Views_plugin::$view_count is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/wp-views/embedded/inc/wpv.class.php on line 42

Deprecated: Creation of dynamic property WP_Views_plugin::$set_view_counts is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/wp-views/embedded/inc/wpv.class.php on line 43

Deprecated: Creation of dynamic property WP_Views_plugin::$view_shortcode_attributes is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/wp-views/embedded/inc/wpv.class.php on line 44

Deprecated: Creation of dynamic property WP_Views_plugin::$view_used_ids is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/wp-views/embedded/inc/wpv.class.php on line 45

Deprecated: Creation of dynamic property WP_Views_plugin::$rendering_views_form_in_progress is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/wp-views/embedded/inc/wpv.class.php on line 46

Deprecated: Creation of dynamic property WP_Views_plugin::$post_query is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/wp-views/embedded/inc/wpv.class.php on line 48

Deprecated: Creation of dynamic property WP_Views_plugin::$post_query_stack is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/wp-views/embedded/inc/wpv.class.php on line 49

Deprecated: Creation of dynamic property WP_Views_plugin::$top_current_page is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/wp-views/embedded/inc/wpv.class.php on line 50

Deprecated: Creation of dynamic property WP_Views_plugin::$current_page is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/wp-views/embedded/inc/wpv.class.php on line 51

Deprecated: Creation of dynamic property WP_Views_plugin::$taxonomy_data is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/wp-views/embedded/inc/wpv.class.php on line 53

Deprecated: Creation of dynamic property WP_Views_plugin::$parent_taxonomy is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/wp-views/embedded/inc/wpv.class.php on line 54

Deprecated: Creation of dynamic property WP_Views_plugin::$users_data is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/wp-views/embedded/inc/wpv.class.php on line 56

Deprecated: Creation of dynamic property WP_Views_plugin::$parent_user is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/wp-views/embedded/inc/wpv.class.php on line 57

Deprecated: Creation of dynamic property WP_Views_plugin::$variables is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/wp-views/embedded/inc/wpv.class.php on line 59

Deprecated: Creation of dynamic property WP_Views_plugin::$force_disable_dependant_parametric_search is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/wp-views/embedded/inc/wpv.class.php on line 61

Deprecated: Creation of dynamic property WP_Views_plugin::$returned_ids_for_parametric_search is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/wp-views/embedded/inc/wpv.class.php on line 62

Deprecated: Creation of dynamic property WPV_template_plugin::$wpautop_removed is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/wp-views/embedded/inc/views-templates/wpv-template.class.php on line 18

Deprecated: Creation of dynamic property WP_Views_Integration_API::$framework is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/wp-views/embedded/inc/third-party/wpv-framework-api.php on line 42

Deprecated: Creation of dynamic property WP_Views_Integration_API::$framework_data is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/wp-views/embedded/inc/third-party/wpv-framework-api.php on line 43

Deprecated: Creation of dynamic property WP_Views_Integration_API::$framework_valid is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/wp-views/embedded/inc/third-party/wpv-framework-api.php on line 44

Deprecated: Creation of dynamic property WP_Views_Integration_API::$framework_is_autodetected is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/wp-views/embedded/inc/third-party/wpv-framework-api.php on line 45

Deprecated: Creation of dynamic property WP_Views_Integration_API::$framework_registered_keys is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/wp-views/embedded/inc/third-party/wpv-framework-api.php on line 46

Deprecated: Creation of dynamic property WP_Views_Integration_API::$framework_integration_page is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/wp-views/embedded/inc/third-party/wpv-framework-api.php on line 47

Deprecated: Creation of dynamic property WP_Views_Integration_API::$auto_detect_list is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/wp-views/embedded/inc/third-party/wpv-framework-api.php on line 55

Deprecated: Creation of dynamic property WP_Views_Integration_API::$example_register is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/wp-views/embedded/inc/third-party/wpv-framework-api.php on line 108

Deprecated: Creation of dynamic property WP_Views_Integration_API::$example_register_key is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/wp-views/embedded/inc/third-party/wpv-framework-api.php on line 130

Deprecated: Creation of dynamic property WPV_Export_Import_Embedded::$legacy_import_php is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/wp-views/embedded/inc/wpv-import-export-embedded.php on line 37

Deprecated: Creation of dynamic property WPV_Export_Import_Embedded::$legacy_import_xml is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/wp-views/embedded/inc/wpv-import-export-embedded.php on line 38

Deprecated: Creation of dynamic property WPV_Export_Import_Embedded::$legacy_show_admin_notice is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/wp-views/embedded/inc/wpv-import-export-embedded.php on line 39

Deprecated: Creation of dynamic property WPV_Export_Import_Embedded::$legacy_import_timestamp is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/wp-views/embedded/inc/wpv-import-export-embedded.php on line 41

Deprecated: Creation of dynamic property WPV_Export_Import_Embedded::$legacy_import_auto_import is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/wp-views/embedded/inc/wpv-import-export-embedded.php on line 42

Deprecated: Creation of dynamic property WPV_Export_Import_Embedded::$legacy_import_affiliate_id is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/wp-views/embedded/inc/wpv-import-export-embedded.php on line 43

Deprecated: Creation of dynamic property WPV_Export_Import_Embedded::$legacy_import_affiliate_key is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/wp-views/embedded/inc/wpv-import-export-embedded.php on line 44

Deprecated: Creation of dynamic property WPV_Export_Import_Embedded::$import_errors is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/wp-views/embedded/inc/wpv-import-export-embedded.php on line 53

Deprecated: Creation of dynamic property WPV_Export_Import_Embedded::$import_messages is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/wp-views/embedded/inc/wpv-import-export-embedded.php on line 54

Deprecated: Creation of dynamic property WPToolset_Admin_Notices::$has_notices is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/wp-views/inc/wpv-admin-notices.php on line 54

Deprecated: Creation of dynamic property OTGS\Toolset\Access\Models\Settings::$current_user_roles is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/types-access/application/models/access_settings.php on line 49

Deprecated: Creation of dynamic property OTGS\Toolset\Access\Models\Settings::$main_role is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/types-access/application/models/access_settings.php on line 51

Deprecated: Creation of dynamic property Toolset_Compatibility_Theme_Generic::$helper is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/wp-views/vendor/toolset/toolset-theme-settings/compatibility-modules/toolset.layouts-theme.class.php on line 47

Deprecated: Return type of Toolset_Settings::offsetExists($offset) should either be compatible with ArrayAccess::offsetExists(mixed $offset): bool, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/types-access/vendor/toolset/toolset-common/inc/toolset.settings.class.php on line 231

Deprecated: Return type of Toolset_Settings::offsetGet($offset) should either be compatible with ArrayAccess::offsetGet(mixed $offset): mixed, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/types-access/vendor/toolset/toolset-common/inc/toolset.settings.class.php on line 243

Deprecated: Return type of Toolset_Settings::offsetSet($offset, $value) should either be compatible with ArrayAccess::offsetSet(mixed $offset, mixed $value): void, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/types-access/vendor/toolset/toolset-common/inc/toolset.settings.class.php on line 258

Deprecated: Return type of Toolset_Settings::offsetUnset($offset) should either be compatible with ArrayAccess::offsetUnset(mixed $offset): void, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/types-access/vendor/toolset/toolset-common/inc/toolset.settings.class.php on line 268

Deprecated: Creation of dynamic property Toolset_Localization::$textdomain is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/types-access/vendor/toolset/toolset-common/inc/toolset.localization.class.php on line 38

Deprecated: Creation of dynamic property Toolset_Localization::$path is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/types-access/vendor/toolset/toolset-common/inc/toolset.localization.class.php on line 39

Deprecated: Creation of dynamic property Toolset_Localization::$mo_name is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/types-access/vendor/toolset/toolset-common/inc/toolset.localization.class.php on line 40

Deprecated: Creation of dynamic property Toolset_Localization::$mo_processed_name is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/types-access/vendor/toolset/toolset-common/inc/toolset.localization.class.php on line 41

Deprecated: Creation of dynamic property Toolset_Relevanssi_Compatibility::$relevanssi_installed is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/types-access/vendor/toolset/toolset-common/inc/toolset.relevanssi.compatibility.class.php on line 15

Deprecated: Creation of dynamic property Toolset_Relevanssi_Compatibility::$toolset_types_installed is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/types-access/vendor/toolset/toolset-common/inc/toolset.relevanssi.compatibility.class.php on line 16

Deprecated: Creation of dynamic property Toolset_Relevanssi_Compatibility::$toolset_views_installed is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/types-access/vendor/toolset/toolset-common/inc/toolset.relevanssi.compatibility.class.php on line 17

Deprecated: Creation of dynamic property Toolset_Relevanssi_Compatibility::$toolset_settings_url is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/types-access/vendor/toolset/toolset-common/inc/toolset.relevanssi.compatibility.class.php on line 19

Deprecated: Creation of dynamic property Toolset_Relevanssi_Compatibility::$pending_to_add is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/types-access/vendor/toolset/toolset-common/inc/toolset.relevanssi.compatibility.class.php on line 21

Deprecated: Creation of dynamic property Toolset_Relevanssi_Compatibility::$pending_to_remove is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/types-access/vendor/toolset/toolset-common/inc/toolset.relevanssi.compatibility.class.php on line 22

Deprecated: Creation of dynamic property OTGS\Toolset\Views\Controller\Cache\Media::$media_model is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/wp-views/application/controllers/cache/media.php on line 19

Deprecated: Creation of dynamic property OTG_Access_Shortcode_Generator::$admin_bar_item_registered is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/types-access/legacy/includes/Shortcode.php on line 71

Deprecated: Creation of dynamic property OTG_Access_Shortcode_Generator::$footer_dialogs_needed is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/types-access/legacy/includes/Shortcode.php on line 94

Deprecated: Creation of dynamic property OTG_Access_Shortcode_Generator::$footer_dialogs_added is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/types-access/legacy/includes/Shortcode.php on line 95

Deprecated: Creation of dynamic property WPV_API_Legacy::$filter_hooks is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/wp-views/inc/api/hooks-api.php on line 10

Deprecated: Creation of dynamic property WPToolset_Field_Date_Scripts::$localization_slug is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/types-access/vendor/toolset/toolset-common/toolset-forms/classes/class.date.scripts.php on line 36

Deprecated: Creation of dynamic property Toolset_Localization::$textdomain is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/types-access/vendor/toolset/toolset-common/inc/toolset.localization.class.php on line 38

Deprecated: Creation of dynamic property Toolset_Localization::$path is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/types-access/vendor/toolset/toolset-common/inc/toolset.localization.class.php on line 39

Deprecated: Creation of dynamic property Toolset_Localization::$mo_name is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/types-access/vendor/toolset/toolset-common/inc/toolset.localization.class.php on line 40

Deprecated: Creation of dynamic property Toolset_Localization::$mo_processed_name is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/types-access/vendor/toolset/toolset-common/inc/toolset.localization.class.php on line 41

Deprecated: Creation of dynamic property Toolset_Script::$deps is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/types-access/vendor/toolset/toolset-common/inc/toolset.assets.manager.class.php on line 97

Deprecated: Creation of dynamic property Toolset_Script::$ver is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/types-access/vendor/toolset/toolset-common/inc/toolset.assets.manager.class.php on line 98

Deprecated: Creation of dynamic property Toolset_Script::$in_footer is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/types-access/vendor/toolset/toolset-common/inc/toolset.assets.manager.class.php on line 99

Deprecated: Creation of dynamic property Toolset_Script::$deps is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/types-access/vendor/toolset/toolset-common/inc/toolset.assets.manager.class.php on line 97

Deprecated: Creation of dynamic property Toolset_Script::$ver is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/types-access/vendor/toolset/toolset-common/inc/toolset.assets.manager.class.php on line 98

Deprecated: Creation of dynamic property Toolset_Script::$in_footer is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/types-access/vendor/toolset/toolset-common/inc/toolset.assets.manager.class.php on line 99

Deprecated: Creation of dynamic property Toolset_Script::$deps is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/types-access/vendor/toolset/toolset-common/inc/toolset.assets.manager.class.php on line 97

Deprecated: Creation of dynamic property Toolset_Script::$ver is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/types-access/vendor/toolset/toolset-common/inc/toolset.assets.manager.class.php on line 98

Deprecated: Creation of dynamic property Toolset_Script::$in_footer is deprecated in /Users/matthias/Sites/localhost/wp-test-toolset/wp-content/plugins/types-access/vendor/toolset/toolset-common/inc/toolset.assets.manager.class.php on line 99

Will these plugins be fully PHP 8.2 compatible in the near future?

Best regards
Matthias

#2540463

Nigel
Supporter

Languages: English (English ) Spanish (Español )

Timezone: Europe/London (GMT+01:00)

Hi Matthias

Checking the internal tickets I can see that the notices you shared arising from PHP 8.1 have recently been worked on and fixed, so the next round of plugin updates should eliminate those.

I have created a ticket where I've shared details of all of the notices from PHP 8.2 so that they can be worked on, too. I'm not sure when that will be, but in the meantime these are just deprecation notices rather than the errors that they will eventually generate in future versions of PHP.

#2541207

Thank you for your reply, Nigel. I'm waiting for the new releases.

Best
Matthias

This ticket is now closed. If you're a Toolset client and need related help, please open a new support ticket.