Conditional Nav Menus + Elementor Conflict
-
Hello,
When I use the Who can see this menu link? option in a WordPress menu item, and then I add that menu to an Elementor’s WordPress Menu widget, and then save the Elementor template, I get a 400 error, and I am automatically logged out from WordPress.
This happens if I set the Who can see this menu link? to Logged In Users or Logged Out Users.
If I deactivate the Ultimate Member plugin, the error stops happening (even if I use the same menu).
-
I get a 400 error, and I am automatically logged out from WordPress.
Is your Web Hosting using any security/firewall software tools like “ModSecurity”?
Hi @aebs90
This thread has been inactive for a while so we’re going to go ahead and mark it Resolved.
Please feel free to re-open this thread if any other questions come up and we’d be happy to help. 🙂
Regards
Hello, sorry for the delay.
I just asked my hosting provider (WP Engine) and they say that yes, they use modsec. Basically they can craft exceptions based on user agent, or IP address.
Do you have any more specific information about what you are worried that they could be blocking? An IP, an user agent, etc.? I can ask them to allow that.
Thank you!
Can you ask your web hosting support about a copy of the “ModSecurity” log
when you get the 400 error and the user logout.Unfortunately, they didn’t provide me the logs “for security reasons”.
But they can “provide details on the IP address if it is blocked but other than that, we cannot provide them”.
Is there an IP that you want to check?
provide details on the IP address if it is blocked but other than that, we cannot provide them
It’s difficult to trace an error if the source is hidden.
Try this code snippet if we can get more info about your 400 issue.
The code snippet will post all WP Redirects and WP Errors and stack trace
to thedebug.log
file in yourwp-content
folder.add_action( 'wp_error_added', 'wp_redirect_custom_log', 10, 3 ); add_filter( 'x_redirect_by', 'wp_redirect_custom_log', 10, 3 ); function wp_redirect_custom_log( $x_redirect_by, $location, $status ) { global $current_user; $traces = debug_backtrace( DEBUG_BACKTRACE_PROVIDE_OBJECT ); $plugin_trace = array(); foreach ( $traces as $trace ) { if( isset( $trace['file'] )) { if ( strpos( $trace['file'], '/plugins/' ) > 0 ) { $file = explode( '/plugins/', $trace['file'] ); if( substr( $file[1], 0, 22 ) != 'wp_redirect_custom_log' ) { $plugin_trace[] = $file[1] . ':' . $trace['line']; } } if ( strpos( $trace['file'], '/themes/' ) > 0 ) { $file = explode( '/themes/', $trace['file'] ); $plugin_trace[] = 'T: ' . $file[1] . ':' . $trace['line']; } if ( strpos( $trace['file'], '/wp-includes/' ) > 0 ) { $file = explode( '/wp-includes/', $trace['file'] ); $plugin_trace[] = 'WP: ' . $file[1] . ':' . $trace['line']; } } } $trace = date_i18n( 'Y-m-d H:i:s ', current_time( 'timestamp' )) . 'user_id ' . $current_user->ID; if ( is_numeric( $location )) { $trace .= ' redirect by ' . $x_redirect_by . ', ' . $location . ', ' . $status; } else { $trace .= ' WP error code ' . $x_redirect_by . ', message ' . $location . ', data '; if ( ! is_array( $status )) { $trace .= $status; } } $trace .= ' stack trace: ' . implode( ', ', $plugin_trace ); file_put_contents( WP_CONTENT_DIR . '/debug.log', $trace . chr(13), FILE_APPEND ); return $x_redirect_by; }
Install the code snippet into your active theme’s
functions.php
file
or use the “Code Snippets” plugin.
https://wordpress.org/plugins/code-snippets/Great, I added it.
Do you need me to set WP_DEBUG and/or WP_DEBUG_LOG to true? Currently, they are not added to my wp-content.
Thanks
I see that it worked without the WP_DEBUG constant.
I added the code and immediately replicated the issue. Here’s the log:
2023-11-08 13:34:25 user_id 3 WP error code Cannot remove not-exists control., message , data stack trace: WP: class-wp-hook.php:312, WP: class-wp-hook.php:334, WP: plugin.php:517, WP: class-wp-error.php:209, WP: class-wp-error.php:66, elementor/includes/managers/controls.php:871, elementor/includes/base/controls-stack.php:450, elementor-pro/modules/loop-builder/documents/loop.php:198, elementor/includes/base/controls-stack.php:2326, elementor/includes/base/controls-stack.php:509, elementor/includes/base/controls-stack.php:313, elementor/includes/base/controls-stack.php:2413, elementor/includes/base/controls-stack.php:1098, elementor/includes/base/controls-stack.php:2158, elementor/core/base/base-object.php:142, elementor/core/base/base-object.php:40, elementor-pro/modules/loop-builder/files/css/loop-css-trait.php:143, elementor-pro/modules/loop-builder/files/css/loop-css-trait.php:130, elementor-pro/modules/loop-builder/documents/loop.php:253, elementor-pro/modules/loop-builder/documents/loop.php:268, elementor-pro/modules/theme-builder/documents/theme-document.php:173, elementor-pro/modules/loop-builder/skins/skin-loop-base.php:144, elementor-pro/modules/loop-builder/skins/skin-loop-base.php:129, elementor-pro/modules/posts/skins/skin-base.php:876, elementor-pro/modules/loop-builder/skins/skin-loop-base.php:89, elementor/includes/base/skin-base.php:79, elementor/includes/base/widget-base.php:607, elementor/includes/base/widget-base.php:750, elementor/includes/base/element-base.php:464, elementor/includes/base/element-base.php:1375, elementor/includes/base/element-base.php:464, elementor/includes/base/element-base.php:1375, elementor/includes/base/element-base.php:464, elementor/core/base/document.php:1739, elementor/core/base/document.php:1134, elementor/includes/frontend.php:1179, elementor/includes/frontend.php:1074, WP: class-wp-hook.php:310, WP: plugin.php:205, WP: post-template.php:256, T: hello-elementor/template-parts/single.php:25, WP: template.php:787, WP: template.php:720, WP: general-template.php:206, T: hello-elementor/index.php:21, WP: template-loader.php:106 2023-11-08 13:34:25 user_id 3 WP error code invalid_methods, message route not supported., data stack trace: WP: class-wp-hook.php:312, WP: class-wp-hook.php:334, WP: plugin.php:517, WP: class-wp-error.php:209, WP: class-wp-error.php:66, elementor/data/v2/base/base-route.php:322, elementor/data/v2/base/base-route.php:233, WP: rest-api/class-wp-rest-server.php:1194, WP: rest-api/class-wp-rest-server.php:1041, WP: rest-api.php:545, elementor/data/v2/manager.php:318, elementor/data/v2/manager.php:383, elementor/core/files/css/base.php:863, elementor/core/files/css/base.php:354, elementor/core/files/css/base.php:714, elementor/core/files/css/base.php:584, elementor/core/files/css/post.php:222, elementor/core/files/css/post.php:298, elementor/core/files/css/post.php:226, elementor/core/files/css/post.php:298, elementor/core/files/css/post.php:226, elementor/core/files/css/post.php:298, elementor/core/files/css/post.php:178, elementor/core/files/css/base.php:677, elementor/core/files/base.php:155, elementor-pro/modules/loop-builder/files/css/loop-css-trait.php:132, elementor-pro/modules/loop-builder/documents/loop.php:253, elementor-pro/modules/loop-builder/documents/loop.php:268, elementor-pro/modules/theme-builder/documents/theme-document.php:173, elementor-pro/modules/loop-builder/skins/skin-loop-base.php:144, elementor-pro/modules/loop-builder/skins/skin-loop-base.php:129, elementor-pro/modules/posts/skins/skin-base.php:876, elementor-pro/modules/loop-builder/skins/skin-loop-base.php:89, elementor/includes/base/skin-base.php:79, elementor/includes/base/widget-base.php:607, elementor/includes/base/widget-base.php:750, elementor/includes/base/element-base.php:464, elementor/includes/base/element-base.php:1375, elementor/includes/base/element-base.php:464, elementor/includes/base/element-base.php:1375, elementor/includes/base/element-base.php:464, elementor/core/base/document.php:1739, elementor/core/base/document.php:1134, elementor/includes/frontend.php:1179, elementor/includes/frontend.php:1074, WP: class-wp-hook.php:310, WP: plugin.php:205, WP: post-template.php:256, T: hello-elementor/template-parts/single.php:25, WP: template.php:787, WP: template.php:720, WP: general-template.php:206, T: hello-elementor/index.php:21, WP: template-loader.php:106 2023-11-08 13:34:35 user_id 3 WP error code invalid_methods, message route not supported., data stack trace: WP: class-wp-hook.php:312, WP: class-wp-hook.php:334, WP: plugin.php:517, WP: class-wp-error.php:209, WP: class-wp-error.php:66, elementor/data/v2/base/base-route.php:322, elementor/data/v2/base/base-route.php:233, WP: rest-api/class-wp-rest-server.php:1194, WP: rest-api/class-wp-rest-server.php:1041, WP: rest-api/class-wp-rest-server.php:431, WP: rest-api.php:418, WP: class-wp-hook.php:310, WP: class-wp-hook.php:334, WP: plugin.php:565, WP: class-wp.php:398, WP: class-wp.php:779, WP: functions.php:1335 2023-11-08 13:34:36 user_id 3 WP error code Cannot remove not-exists control., message , data stack trace: WP: class-wp-hook.php:312, WP: class-wp-hook.php:334, WP: plugin.php:517, WP: class-wp-error.php:209, WP: class-wp-error.php:66, elementor/includes/managers/controls.php:871, elementor/includes/base/controls-stack.php:450, elementor-pro/modules/loop-builder/documents/loop.php:198, elementor/includes/base/controls-stack.php:2326, elementor/includes/base/controls-stack.php:509, elementor/includes/base/controls-stack.php:313, elementor/core/settings/page/model.php:173, elementor/includes/base/controls-stack.php:2326, elementor/includes/base/controls-stack.php:509, elementor/includes/base/controls-stack.php:313, elementor/includes/base/controls-stack.php:2413, elementor/includes/base/controls-stack.php:1098, elementor/includes/template-library/sources/local.php:657, elementor/includes/template-library/sources/local.php:479, theplus_elementor_addon/modules/helper-function.php:9, theplus_elementor_addon/modules/widgets/tp_navigation_menu.php:174, elementor/includes/base/controls-stack.php:2326, elementor/includes/base/widget-base.php:1039, elementor/includes/base/controls-stack.php:509, elementor/includes/base/widget-base.php:177, elementor/includes/managers/widgets.php:375, elementor/core/common/modules/ajax/module.php:176, WP: class-wp-hook.php:310, WP: class-wp-hook.php:334, WP: plugin.php:517 2023-11-08 13:34:36 user_id 3 WP error code Cannot remove not-exists control., message , data stack trace: WP: class-wp-hook.php:312, WP: class-wp-hook.php:334, WP: plugin.php:517, WP: class-wp-error.php:209, WP: class-wp-error.php:66, elementor/includes/managers/controls.php:871, elementor/includes/base/controls-stack.php:450, elementor-pro/modules/loop-builder/documents/loop.php:198, elementor/includes/base/controls-stack.php:2326, elementor/includes/base/controls-stack.php:509, elementor/includes/base/controls-stack.php:313, elementor/core/settings/page/model.php:173, elementor/includes/base/controls-stack.php:2326, elementor/includes/base/controls-stack.php:509, elementor/includes/base/controls-stack.php:313, elementor/includes/base/controls-stack.php:2413, elementor/includes/base/controls-stack.php:1098, elementor/includes/template-library/sources/local.php:657, elementor/includes/template-library/sources/local.php:479, theplus_elementor_addon/modules/helper-function.php:9, theplus_elementor_addon/modules/widgets/tp_navigation_menu.php:174, elementor/includes/base/controls-stack.php:2326, elementor/includes/base/widget-base.php:1039, elementor/includes/base/controls-stack.php:509, elementor/includes/base/widget-base.php:177, elementor/includes/managers/widgets.php:375, elementor/core/common/modules/ajax/module.php:176, WP: class-wp-hook.php:310, WP: class-wp-hook.php:334, WP: plugin.php:517 2023-11-08 13:34:36 user_id 3 WP error code Cannot remove not-exists control., message , data stack trace: WP: class-wp-hook.php:312, WP: class-wp-hook.php:334, WP: plugin.php:517, WP: class-wp-error.php:209, WP: class-wp-error.php:66, elementor/includes/managers/controls.php:871, elementor/includes/base/controls-stack.php:450, elementor-pro/modules/loop-builder/documents/loop.php:198, elementor/includes/base/controls-stack.php:2326, elementor/includes/base/controls-stack.php:509, elementor/includes/base/controls-stack.php:313, elementor/core/settings/page/model.php:173, elementor/includes/base/controls-stack.php:2326, elementor/includes/base/controls-stack.php:509, elementor/includes/base/controls-stack.php:313, elementor/includes/base/controls-stack.php:2413, elementor/includes/base/controls-stack.php:1098, elementor/includes/template-library/sources/local.php:657, elementor/includes/template-library/sources/local.php:479, theplus_elementor_addon/modules/helper-function.php:9, theplus_elementor_addon/modules/widgets/tp_navigation_menu.php:174, elementor/includes/base/controls-stack.php:2326, elementor/includes/base/widget-base.php:1039, elementor/includes/base/controls-stack.php:509, elementor/includes/base/widget-base.php:177, elementor/includes/managers/widgets.php:375, elementor/core/common/modules/ajax/module.php:176, WP: class-wp-hook.php:310, WP: class-wp-hook.php:334, WP: plugin.php:517 2023-11-08 13:34:36 user_id 3 WP error code Cannot remove not-exists control., message , data stack trace: WP: class-wp-hook.php:312, WP: class-wp-hook.php:334, WP: plugin.php:517, WP: class-wp-error.php:209, WP: class-wp-error.php:66, elementor/includes/managers/controls.php:871, elementor/includes/base/controls-stack.php:450, elementor-pro/modules/loop-builder/documents/loop.php:198, elementor/includes/base/controls-stack.php:2326, elementor/includes/base/controls-stack.php:509, elementor/includes/base/controls-stack.php:313, elementor/core/settings/page/model.php:173, elementor/includes/base/controls-stack.php:2326, elementor/includes/base/controls-stack.php:509, elementor/includes/base/controls-stack.php:313, elementor/includes/base/controls-stack.php:2413, elementor/includes/base/controls-stack.php:1098, elementor/includes/template-library/sources/local.php:657, elementor/includes/template-library/sources/local.php:479, theplus_elementor_addon/modules/helper-function.php:9, theplus_elementor_addon/modules/widgets/tp_navigation_menu.php:174, elementor/includes/base/controls-stack.php:2326, elementor/includes/base/widget-base.php:1039, elementor/includes/base/controls-stack.php:509, elementor/includes/base/widget-base.php:177, elementor/includes/managers/widgets.php:375, elementor/core/common/modules/ajax/module.php:176, WP: class-wp-hook.php:310, WP: class-wp-hook.php:334, WP: plugin.php:517 2023-11-08 13:34:36 user_id 3 WP error code Cannot remove not-exists control., message , data stack trace: WP: class-wp-hook.php:312, WP: class-wp-hook.php:334, WP: plugin.php:517, WP: class-wp-error.php:209, WP: class-wp-error.php:66, elementor/includes/managers/controls.php:871, elementor/includes/base/controls-stack.php:450, elementor-pro/modules/loop-builder/documents/loop.php:198, elementor/includes/base/controls-stack.php:2326, elementor/includes/base/controls-stack.php:509, elementor/includes/base/controls-stack.php:313, elementor/core/settings/page/model.php:173, elementor/includes/base/controls-stack.php:2326, elementor/includes/base/controls-stack.php:509, elementor/includes/base/controls-stack.php:313, elementor/includes/base/controls-stack.php:2413, elementor/includes/base/controls-stack.php:1098, elementor/includes/template-library/sources/local.php:657, elementor/includes/template-library/sources/local.php:479, theplus_elementor_addon/modules/helper-function.php:9, theplus_elementor_addon/modules/widgets/tp_navigation_menu.php:174, elementor/includes/base/controls-stack.php:2326, elementor/includes/base/widget-base.php:1039, elementor/includes/base/controls-stack.php:509, elementor/includes/base/widget-base.php:177, elementor/includes/managers/widgets.php:375, elementor/core/common/modules/ajax/module.php:176, WP: class-wp-hook.php:310, WP: class-wp-hook.php:334, WP: plugin.php:517 2023-11-08 13:34:36 user_id 3 WP error code Cannot remove not-exists control., message , data stack trace: WP: class-wp-hook.php:312, WP: class-wp-hook.php:334, WP: plugin.php:517, WP: class-wp-error.php:209, WP: class-wp-error.php:66, elementor/includes/managers/controls.php:871, elementor/includes/base/controls-stack.php:450, elementor-pro/modules/loop-builder/documents/loop.php:198, elementor/includes/base/controls-stack.php:2326, elementor/includes/base/controls-stack.php:509, elementor/includes/base/controls-stack.php:313, elementor/core/settings/page/model.php:173, elementor/includes/base/controls-stack.php:2326, elementor/includes/base/controls-stack.php:509, elementor/includes/base/controls-stack.php:313, elementor/includes/base/controls-stack.php:2413, elementor/includes/base/controls-stack.php:1098, elementor/includes/template-library/sources/local.php:657, elementor/includes/template-library/sources/local.php:479, theplus_elementor_addon/modules/helper-function.php:9, theplus_elementor_addon/modules/widgets/tp_navigation_menu.php:174, elementor/includes/base/controls-stack.php:2326, elementor/includes/base/widget-base.php:1039, elementor/includes/base/controls-stack.php:509, elementor/includes/base/widget-base.php:177, elementor/includes/managers/widgets.php:375, elementor/core/common/modules/ajax/module.php:176, WP: class-wp-hook.php:310, WP: class-wp-hook.php:334, WP: plugin.php:517 2023-11-08 13:34:36 user_id 3 WP error code Cannot remove not-exists control., message , data stack trace: WP: class-wp-hook.php:312, WP: class-wp-hook.php:334, WP: plugin.php:517, WP: class-wp-error.php:209, WP: class-wp-error.php:66, elementor/includes/managers/controls.php:871, elementor/includes/base/controls-stack.php:450, elementor/includes/base/controls-stack.php:973, elementor/includes/base/sub-controls-stack.php:174, elementor-pro/modules/posts/skins/skin-cards.php:74, elementor-pro/modules/posts/skins/skin-cards.php:55, WP: class-wp-hook.php:312, WP: class-wp-hook.php:334, WP: plugin.php:517, elementor/includes/base/controls-stack.php:1601, elementor-pro/modules/posts/widgets/posts-base.php:844, elementor-pro/modules/theme-builder/widgets/archive-posts.php:52, elementor/includes/base/controls-stack.php:2326, elementor/includes/base/widget-base.php:1039, elementor/includes/base/controls-stack.php:509, elementor/includes/base/widget-base.php:177, elementor/includes/managers/widgets.php:375, elementor/core/common/modules/ajax/module.php:176, WP: class-wp-hook.php:310, WP: class-wp-hook.php:334, WP: plugin.php:517 2023-11-08 13:34:36 user_id 3 WP error code Cannot remove not-exists control., message , data stack trace: WP: class-wp-hook.php:312, WP: class-wp-hook.php:334, WP: plugin.php:517, WP: class-wp-error.php:209, WP: class-wp-error.php:66, elementor/includes/managers/controls.php:871, elementor/includes/base/controls-stack.php:450, elementor/includes/base/controls-stack.php:973, elementor/includes/base/sub-controls-stack.php:174, elementor-pro/modules/posts/skins/skin-cards.php:74, elementor-pro/modules/posts/skins/skin-cards.php:55, WP: class-wp-hook.php:312, WP: class-wp-hook.php:334, WP: plugin.php:517, elementor/includes/base/controls-stack.php:1601, elementor-pro/modules/posts/widgets/posts-base.php:844, elementor-pro/modules/theme-builder/widgets/archive-posts.php:52, elementor/includes/base/controls-stack.php:2326, elementor/includes/base/widget-base.php:1039, elementor/includes/base/controls-stack.php:509, elementor/includes/base/widget-base.php:177, elementor/includes/managers/widgets.php:375, elementor/core/common/modules/ajax/module.php:176, WP: class-wp-hook.php:310, WP: class-wp-hook.php:334, WP: plugin.php:517 2023-11-08 13:34:36 user_id 3 WP error code Cannot remove not-exists control., message , data stack trace: WP: class-wp-hook.php:312, WP: class-wp-hook.php:334, WP: plugin.php:517, WP: class-wp-error.php:209, WP: class-wp-error.php:66, elementor/includes/managers/controls.php:871, elementor/includes/base/controls-stack.php:450, elementor/includes/base/controls-stack.php:973, elementor/includes/base/sub-controls-stack.php:174, elementor-pro/modules/posts/skins/skin-cards.php:74, elementor-pro/modules/posts/skins/skin-cards.php:55, WP: class-wp-hook.php:312, WP: class-wp-hook.php:334, WP: plugin.php:517, elementor/includes/base/controls-stack.php:1601, elementor-pro/modules/posts/widgets/posts-base.php:844, elementor-pro/modules/posts/widgets/posts.php:45, elementor/includes/base/controls-stack.php:2326, elementor/includes/base/widget-base.php:1039, elementor/includes/base/controls-stack.php:509, elementor/includes/base/widget-base.php:177, elementor/includes/managers/widgets.php:375, elementor/core/common/modules/ajax/module.php:176, WP: class-wp-hook.php:310, WP: class-wp-hook.php:334, WP: plugin.php:517 2023-11-08 13:34:36 user_id 3 WP error code Cannot remove not-exists control., message , data stack trace: WP: class-wp-hook.php:312, WP: class-wp-hook.php:334, WP: plugin.php:517, WP: class-wp-error.php:209, WP: class-wp-error.php:66, elementor/includes/managers/controls.php:871, elementor/includes/base/controls-stack.php:450, elementor/includes/base/controls-stack.php:973, elementor/includes/base/sub-controls-stack.php:174, elementor-pro/modules/posts/skins/skin-cards.php:74, elementor-pro/modules/posts/skins/skin-cards.php:55, WP: class-wp-hook.php:312, WP: class-wp-hook.php:334, WP: plugin.php:517, elementor/includes/base/controls-stack.php:1601, elementor-pro/modules/posts/widgets/posts-base.php:844, elementor-pro/modules/posts/widgets/posts.php:45, elementor/includes/base/controls-stack.php:2326, elementor/includes/base/widget-base.php:1039, elementor/includes/base/controls-stack.php:509, elementor/includes/base/widget-base.php:177, elementor/includes/managers/widgets.php:375, elementor/core/common/modules/ajax/module.php:176, WP: class-wp-hook.php:310, WP: class-wp-hook.php:334, WP: plugin.php:517 2023-11-08 13:34:36 user_id 3 WP error code Cannot remove not-exists control., message , data stack trace: WP: class-wp-hook.php:312, WP: class-wp-hook.php:334, WP: plugin.php:517, WP: class-wp-error.php:209, WP: class-wp-error.php:66, elementor/includes/managers/controls.php:871, elementor/includes/base/controls-stack.php:450, elementor-pro/modules/hotspot/widgets/hotspot.php:591, elementor/includes/base/controls-stack.php:2326, elementor/includes/base/widget-base.php:1039, elementor/includes/base/controls-stack.php:509, elementor/includes/base/widget-base.php:177, elementor/includes/managers/widgets.php:375, elementor/core/common/modules/ajax/module.php:176, WP: class-wp-hook.php:310, WP: class-wp-hook.php:334, WP: plugin.php:517 2023-11-08 13:34:36 user_id 3 WP error code Cannot remove not-exists control., message , data stack trace: WP: class-wp-hook.php:312, WP: class-wp-hook.php:334, WP: plugin.php:517, WP: class-wp-error.php:209, WP: class-wp-error.php:66, elementor/includes/managers/controls.php:871, elementor/includes/base/controls-stack.php:450, elementor-pro/modules/hotspot/widgets/hotspot.php:593, elementor/includes/base/controls-stack.php:2326, elementor/includes/base/widget-base.php:1039, elementor/includes/base/controls-stack.php:509, elementor/includes/base/widget-base.php:177, elementor/includes/managers/widgets.php:375, elementor/core/common/modules/ajax/module.php:176, WP: class-wp-hook.php:310, WP: class-wp-hook.php:334, WP: plugin.php:517 2023-11-08 13:34:36 user_id 3 WP error code Cannot remove not-exists control., message , data stack trace: WP: class-wp-hook.php:312, WP: class-wp-hook.php:334, WP: plugin.php:517, WP: class-wp-error.php:209, WP: class-wp-error.php:66, elementor/includes/managers/controls.php:871, elementor/includes/base/controls-stack.php:450, elementor/includes/base/controls-stack.php:973, elementor-pro/modules/carousel/widgets/testimonial-carousel.php:516, elementor/includes/base/controls-stack.php:2326, elementor/includes/base/widget-base.php:1039, elementor/includes/base/controls-stack.php:509, elementor/includes/base/widget-base.php:177, elementor/includes/managers/widgets.php:375, elementor/core/common/modules/ajax/module.php:176, WP: class-wp-hook.php:310, WP: class-wp-hook.php:334, WP: plugin.php:517 2023-11-08 13:34:36 user_id 3 WP error code Cannot remove not-exists control., message , data stack trace: WP: class-wp-hook.php:312, WP: class-wp-hook.php:334, WP: plugin.php:517, WP: class-wp-error.php:209, WP: class-wp-error.php:66, elementor/includes/managers/controls.php:871, elementor/includes/base/controls-stack.php:450, elementor/includes/base/controls-stack.php:973, elementor-pro/modules/carousel/widgets/testimonial-carousel.php:516, elementor/includes/base/controls-stack.php:2326, elementor/includes/base/widget-base.php:1039, elementor/includes/base/controls-stack.php:509, elementor/includes/base/widget-base.php:177, elementor/includes/managers/widgets.php:375, elementor/core/common/modules/ajax/module.php:176, WP: class-wp-hook.php:310, WP: class-wp-hook.php:334, WP: plugin.php:517 2023-11-08 13:34:36 user_id 3 WP error code Cannot remove not-exists control., message , data stack trace: WP: class-wp-hook.php:312, WP: class-wp-hook.php:334, WP: plugin.php:517, WP: class-wp-error.php:209, WP: class-wp-error.php:66, elementor/includes/managers/controls.php:871, elementor/includes/base/controls-stack.php:450, elementor/includes/base/controls-stack.php:973, elementor-pro/modules/carousel/widgets/reviews.php:510, elementor/includes/base/controls-stack.php:2326, elementor/includes/base/widget-base.php:1039, elementor/includes/base/controls-stack.php:509, elementor/includes/base/widget-base.php:177, elementor/includes/managers/widgets.php:375, elementor/core/common/modules/ajax/module.php:176, WP: class-wp-hook.php:310, WP: class-wp-hook.php:334, WP: plugin.php:517 2023-11-08 13:34:36 user_id 3 WP error code Cannot remove not-exists control., message , data stack trace: WP: class-wp-hook.php:312, WP: class-wp-hook.php:334, WP: plugin.php:517, WP: class-wp-error.php:209, WP: class-wp-error.php:66, elementor/includes/managers/controls.php:871, elementor/includes/base/controls-stack.php:450, elementor/includes/base/controls-stack.php:973, elementor-pro/modules/carousel/widgets/reviews.php:510, elementor/includes/base/controls-stack.php:2326, elementor/includes/base/widget-base.php:1039, elementor/includes/base/controls-stack.php:509, elementor/includes/base/widget-base.php:177, elementor/includes/managers/widgets.php:375, elementor/core/common/modules/ajax/module.php:176, WP: class-wp-hook.php:310, WP: class-wp-hook.php:334, WP: plugin.php:517 2023-11-08 13:34:36 user_id 3 WP error code Cannot get a not-exists control., message , data stack trace: WP: class-wp-hook.php:312, WP: class-wp-hook.php:334, WP: plugin.php:517, WP: class-wp-error.php:209, WP: class-wp-error.php:66, elementor/includes/managers/controls.php:919, elementor/includes/managers/controls.php:942, elementor/includes/base/controls-stack.php:474, elementor-pro/modules/payments/widgets/stripe-button.php:307, elementor-pro/modules/payments/classes/payment-button.php:494, elementor-pro/modules/payments/widgets/stripe-button.php:431, elementor-pro/modules/payments/widgets/stripe-button.php:459, elementor/includes/base/controls-stack.php:2326, elementor/includes/base/widget-base.php:1039, elementor/includes/base/controls-stack.php:509, elementor/includes/base/widget-base.php:177, elementor/includes/managers/widgets.php:375, elementor/core/common/modules/ajax/module.php:176, WP: class-wp-hook.php:310, WP: class-wp-hook.php:334, WP: plugin.php:517 2023-11-08 13:34:36 user_id 3 WP error code Cannot remove not-exists control., message , data stack trace: WP: class-wp-hook.php:312, WP: class-wp-hook.php:334, WP: plugin.php:517, WP: class-wp-error.php:209, WP: class-wp-error.php:66, elementor/includes/managers/controls.php:871, elementor/includes/base/controls-stack.php:450, elementor-pro/modules/payments/widgets/stripe-button.php:531, elementor-pro/modules/payments/classes/payment-button.php:340, elementor-pro/modules/payments/classes/payment-button.php:496, elementor-pro/modules/payments/widgets/stripe-button.php:431, elementor-pro/modules/payments/widgets/stripe-button.php:459, elementor/includes/base/controls-stack.php:2326, elementor/includes/base/widget-base.php:1039, elementor/includes/base/controls-stack.php:509, elementor/includes/base/widget-base.php:177, elementor/includes/managers/widgets.php:375, elementor/core/common/modules/ajax/module.php:176, WP: class-wp-hook.php:310, WP: class-wp-hook.php:334, WP: plugin.php:517 2023-11-08 13:34:36 user_id 3 WP error code invalid_methods, message route not supported., data stack trace: WP: class-wp-hook.php:312, WP: class-wp-hook.php:334, WP: plugin.php:517, WP: class-wp-error.php:209, WP: class-wp-error.php:66, elementor/data/v2/base/base-route.php:322, elementor/data/v2/base/base-route.php:233, WP: rest-api/class-wp-rest-server.php:1194, WP: rest-api/class-wp-rest-server.php:1041, WP: rest-api/class-wp-rest-server.php:431, WP: rest-api.php:418, WP: class-wp-hook.php:310, WP: class-wp-hook.php:334, WP: plugin.php:565, WP: class-wp.php:398, WP: class-wp.php:779, WP: functions.php:1335 2023-11-08 13:34:36 user_id 3 WP error code invalid_methods, message route not supported., data stack trace: WP: class-wp-hook.php:312, WP: class-wp-hook.php:334, WP: plugin.php:517, WP: class-wp-error.php:209, WP: class-wp-error.php:66, elementor/data/v2/base/base-route.php:322, elementor/data/v2/base/base-route.php:233, WP: rest-api/class-wp-rest-server.php:1194, WP: rest-api/class-wp-rest-server.php:1041, WP: rest-api.php:545, elementor/data/v2/manager.php:318, elementor/data/v2/base/endpoint/index/all-children.php:66, elementor/data/v2/base/base-route.php:329, elementor/data/v2/base/base-route.php:233, WP: rest-api/class-wp-rest-server.php:1194, WP: rest-api/class-wp-rest-server.php:1041, WP: rest-api/class-wp-rest-server.php:431, WP: rest-api.php:418, WP: class-wp-hook.php:310, WP: class-wp-hook.php:334, WP: plugin.php:565, WP: class-wp.php:398, WP: class-wp.php:779, WP: functions.php:1335 2023-11-08 13:34:36 user_id 3 WP error code invalid_methods, message route not supported., data stack trace: WP: class-wp-hook.php:312, WP: class-wp-hook.php:334, WP: plugin.php:517, WP: class-wp-error.php:209, WP: class-wp-error.php:66, elementor/data/v2/base/base-route.php:322, elementor/data/v2/base/base-route.php:233, WP: rest-api/class-wp-rest-server.php:1194, WP: rest-api/class-wp-rest-server.php:1041, WP: rest-api.php:545, elementor/data/v2/manager.php:318, elementor/data/v2/base/endpoint/index/all-children.php:66, elementor/data/v2/base/base-route.php:329, elementor/data/v2/base/base-route.php:233, WP: rest-api/class-wp-rest-server.php:1194, WP: rest-api/class-wp-rest-server.php:1041, WP: rest-api/class-wp-rest-server.php:431, WP: rest-api.php:418, WP: class-wp-hook.php:310, WP: class-wp-hook.php:334, WP: plugin.php:565, WP: class-wp.php:398, WP: class-wp.php:779, WP: functions.php:1335 2023-11-08 13:35:05 user_id 0 redirect by WordPress, 302, https://adisdstg.wpenginepowered.com stack trace: WP: class-wp-hook.php:310, WP: plugin.php:205, WP: pluggable.php:1433, WP: pluggable.php:1545, ultimate-member/includes/core/class-logout.php:82, WP: class-wp-hook.php:310, WP: class-wp-hook.php:334, WP: plugin.php:517, WP: template-loader.php:13 2023-11-08 13:35:06 user_id 3 WP error code Cannot remove not-exists control., message , data stack trace: WP: class-wp-hook.php:312, WP: class-wp-hook.php:334, WP: plugin.php:517, WP: class-wp-error.php:209, WP: class-wp-error.php:66, elementor/includes/managers/controls.php:871, elementor/includes/base/controls-stack.php:450, elementor-pro/modules/loop-builder/documents/loop.php:198, elementor/includes/base/controls-stack.php:2326, elementor/includes/base/controls-stack.php:509, elementor/includes/base/controls-stack.php:313, elementor/includes/base/controls-stack.php:2413, elementor/includes/base/controls-stack.php:1098, elementor/includes/base/controls-stack.php:2158, elementor/core/base/base-object.php:142, elementor/core/base/base-object.php:40, elementor-pro/modules/loop-builder/files/css/loop-css-trait.php:143, elementor-pro/modules/loop-builder/files/css/loop-css-trait.php:130, elementor-pro/modules/loop-builder/documents/loop.php:253, elementor-pro/modules/loop-builder/documents/loop.php:268, elementor-pro/modules/theme-builder/documents/theme-document.php:173, elementor-pro/modules/loop-builder/skins/skin-loop-base.php:144, elementor-pro/modules/loop-builder/skins/skin-loop-base.php:129, elementor-pro/modules/posts/skins/skin-base.php:876, elementor-pro/modules/loop-builder/skins/skin-loop-base.php:89, elementor/includes/base/skin-base.php:79, elementor/includes/base/widget-base.php:607, elementor/includes/base/widget-base.php:750, elementor/includes/base/element-base.php:464, elementor/includes/base/element-base.php:1375, elementor/includes/base/element-base.php:464, elementor/includes/base/element-base.php:1375, elementor/includes/base/element-base.php:464, elementor/core/base/document.php:1739, elementor/core/base/document.php:1134, elementor/includes/frontend.php:1179, elementor/includes/frontend.php:1074, WP: class-wp-hook.php:310, WP: plugin.php:205, WP: post-template.php:256, T: hello-elementor/template-parts/single.php:25, WP: template.php:787, WP: template.php:720, WP: general-template.php:206, T: hello-elementor/index.php:21, WP: template-loader.php:106 2023-11-08 13:35:06 user_id 3 WP error code invalid_methods, message route not supported., data stack trace: WP: class-wp-hook.php:312, WP: class-wp-hook.php:334, WP: plugin.php:517, WP: class-wp-error.php:209, WP: class-wp-error.php:66, elementor/data/v2/base/base-route.php:322, elementor/data/v2/base/base-route.php:233, WP: rest-api/class-wp-rest-server.php:1194, WP: rest-api/class-wp-rest-server.php:1041, WP: rest-api.php:545, elementor/data/v2/manager.php:318, elementor/data/v2/manager.php:383, elementor/core/files/css/base.php:863, elementor/core/files/css/base.php:354, elementor/core/files/css/base.php:714, elementor/core/files/css/base.php:584, elementor/core/files/css/post.php:222, elementor/core/files/css/post.php:298, elementor/core/files/css/post.php:226, elementor/core/files/css/post.php:298, elementor/core/files/css/post.php:226, elementor/core/files/css/post.php:298, elementor/core/files/css/post.php:178, elementor/core/files/css/base.php:677, elementor/core/files/base.php:155, elementor-pro/modules/loop-builder/files/css/loop-css-trait.php:132, elementor-pro/modules/loop-builder/documents/loop.php:253, elementor-pro/modules/loop-builder/documents/loop.php:268, elementor-pro/modules/theme-builder/documents/theme-document.php:173, elementor-pro/modules/loop-builder/skins/skin-loop-base.php:144, elementor-pro/modules/loop-builder/skins/skin-loop-base.php:129, elementor-pro/modules/posts/skins/skin-base.php:876, elementor-pro/modules/loop-builder/skins/skin-loop-base.php:89, elementor/includes/base/skin-base.php:79, elementor/includes/base/widget-base.php:607, elementor/includes/base/widget-base.php:750, elementor/includes/base/element-base.php:464, elementor/includes/base/element-base.php:1375, elementor/includes/base/element-base.php:464, elementor/includes/base/element-base.php:1375, elementor/includes/base/element-base.php:464, elementor/core/base/document.php:1739, elementor/core/base/document.php:1134, elementor/includes/frontend.php:1179, elementor/includes/frontend.php:1074, WP: class-wp-hook.php:310, WP: plugin.php:205, WP: post-template.php:256, T: hello-elementor/template-parts/single.php:25, WP: template.php:787, WP: template.php:720, WP: general-template.php:206, T: hello-elementor/index.php:21, WP: template-loader.php:106 2023-11-08 13:35:06 user_id 0 WP error code Cannot remove not-exists control., message , data stack trace: WP: class-wp-hook.php:312, WP: class-wp-hook.php:334, WP: plugin.php:517, WP: class-wp-error.php:209, WP: class-wp-error.php:66, elementor/includes/managers/controls.php:871, elementor/includes/base/controls-stack.php:450, elementor-pro/modules/loop-builder/documents/loop.php:198, elementor/includes/base/controls-stack.php:2326, elementor/includes/base/controls-stack.php:509, elementor/includes/base/controls-stack.php:313, elementor/includes/base/controls-stack.php:2413, elementor/includes/base/controls-stack.php:1098, elementor/includes/base/controls-stack.php:2158, elementor/core/base/base-object.php:142, elementor/core/base/base-object.php:40, elementor-pro/modules/loop-builder/files/css/loop-css-trait.php:143, elementor-pro/modules/loop-builder/files/css/loop-css-trait.php:130, elementor-pro/modules/loop-builder/documents/loop.php:253, elementor-pro/modules/loop-builder/documents/loop.php:268, elementor-pro/modules/theme-builder/documents/theme-document.php:173, elementor-pro/modules/loop-builder/skins/skin-loop-base.php:144, elementor-pro/modules/loop-builder/skins/skin-loop-base.php:129, elementor-pro/modules/posts/skins/skin-base.php:876, elementor-pro/modules/loop-builder/skins/skin-loop-base.php:89, elementor/includes/base/skin-base.php:79, elementor/includes/base/widget-base.php:607, elementor/includes/base/widget-base.php:750, elementor/includes/base/element-base.php:464, elementor/includes/base/element-base.php:1375, elementor/includes/base/element-base.php:464, elementor/includes/base/element-base.php:1375, elementor/includes/base/element-base.php:464, elementor/core/base/document.php:1739, elementor/core/base/document.php:1134, elementor/includes/frontend.php:1179, elementor/includes/frontend.php:1074, WP: class-wp-hook.php:310, WP: plugin.php:205, WP: post-template.php:256, T: hello-elementor/template-parts/single.php:25, WP: template.php:787, WP: template.php:720, WP: general-template.php:206, T: hello-elementor/index.php:21, WP: template-loader.php:106 2023-11-08 13:35:06 user_id 0 WP error code invalid_methods, message route not supported., data stack trace: WP: class-wp-hook.php:312, WP: class-wp-hook.php:334, WP: plugin.php:517, WP: class-wp-error.php:209, WP: class-wp-error.php:66, elementor/data/v2/base/base-route.php:322, elementor/data/v2/base/base-route.php:233, WP: rest-api/class-wp-rest-server.php:1194, WP: rest-api/class-wp-rest-server.php:1041, WP: rest-api.php:545, elementor/data/v2/manager.php:318, elementor/data/v2/manager.php:383, elementor/core/files/css/base.php:863, elementor/core/files/css/base.php:354, elementor/core/files/css/base.php:714, elementor/core/files/css/base.php:584, elementor/core/files/css/post.php:222, elementor/core/files/css/post.php:298, elementor/core/files/css/post.php:226, elementor/core/files/css/post.php:298, elementor/core/files/css/post.php:226, elementor/core/files/css/post.php:298, elementor/core/files/css/post.php:178, elementor/core/files/css/base.php:677, elementor/core/files/base.php:155, elementor-pro/modules/loop-builder/files/css/loop-css-trait.php:132, elementor-pro/modules/loop-builder/documents/loop.php:253, elementor-pro/modules/loop-builder/documents/loop.php:268, elementor-pro/modules/theme-builder/documents/theme-document.php:173, elementor-pro/modules/loop-builder/skins/skin-loop-base.php:144, elementor-pro/modules/loop-builder/skins/skin-loop-base.php:129, elementor-pro/modules/posts/skins/skin-base.php:876, elementor-pro/modules/loop-builder/skins/skin-loop-base.php:89, elementor/includes/base/skin-base.php:79, elementor/includes/base/widget-base.php:607, elementor/includes/base/widget-base.php:750, elementor/includes/base/element-base.php:464, elementor/includes/base/element-base.php:1375, elementor/includes/base/element-base.php:464, elementor/includes/base/element-base.php:1375, elementor/includes/base/element-base.php:464, elementor/core/base/document.php:1739, elementor/core/base/document.php:1134, elementor/includes/frontend.php:1179, elementor/includes/frontend.php:1074, WP: class-wp-hook.php:310, WP: plugin.php:205, WP: post-template.php:256, T: hello-elementor/template-parts/single.php:25, WP: template.php:787, WP: template.php:720, WP: general-template.php:206, T: hello-elementor/index.php:21, WP: template-loader.php:106
There are a lot of issues with Elementor in your trace
and UM is only involved in the logout.Do you have enough memory allocated for Elementor?
WP Memory limit of 256 MB (Elementor and Elementor Pro only), 512 MB recommended, 768 MB for best performance.
https://elementor.com/help/requirements/
Enable the WP debug also if we can get more info from any PHP warnings.
https://docs.ultimatemember.com/article/1751-enable-debug-logging
We have 512MB of memory limit. That’s the max that WP Engine allows, and we haven’t had any real issue with Elementor on other websites.
This is the log with WP_DEBUG enabled:
[09-Nov-2023 16:54:26 UTC] PHP Deprecated: Creation of dynamic property L_Theplus_Elementor_Plugin_Options::$fields is deprecated in /wp-content/plugins/the-plus-addons-for-elementor-page-builder/includes/theplus_options.php on line 60 [09-Nov-2023 16:54:26 UTC] PHP Deprecated: Creation of dynamic property L_Plus_Generator::$transient_extensions is deprecated in /wp-content/plugins/the-plus-addons-for-elementor-page-builder/modules/enqueue/plus-generator.php on line 943 [09-Nov-2023 16:54:26 UTC] PHP Deprecated: Creation of dynamic property Theplus_Elementor_Plugin_Options::$fields is deprecated in /wp-content/plugins/theplus_elementor_addon/includes/theplus_options.php on line 66 [09-Nov-2023 16:54:26 UTC] PHP Deprecated: Creation of dynamic property Plus_Generator::$transient_extensions is deprecated in /wp-content/plugins/theplus_elementor_addon/modules/enqueue/plus-generator.php on line 873 [09-Nov-2023 16:54:26 UTC] PHP Deprecated: Creation of dynamic property OTGS\Toolset\Common\Interop\Handler\Elementor\ElementorModules::$view_widget is deprecated in /wp-content/plugins/types/vendor/toolset/toolset-common/inc/autoloaded/interop/handler/elementor/elementor.php on line 112 [09-Nov-2023 16:54:27 UTC] PHP Deprecated: Creation of dynamic property L_Theplus_Elementor_Plugin_Options::$fields is deprecated in /wp-content/plugins/the-plus-addons-for-elementor-page-builder/includes/theplus_options.php on line 60 [09-Nov-2023 16:54:27 UTC] PHP Deprecated: Creation of dynamic property L_Plus_Generator::$transient_extensions is deprecated in /wp-content/plugins/the-plus-addons-for-elementor-page-builder/modules/enqueue/plus-generator.php on line 943 [09-Nov-2023 16:54:27 UTC] PHP Deprecated: Creation of dynamic property Theplus_Elementor_Plugin_Options::$fields is deprecated in /wp-content/plugins/theplus_elementor_addon/includes/theplus_options.php on line 66 [09-Nov-2023 16:54:27 UTC] PHP Deprecated: Creation of dynamic property Plus_Generator::$transient_extensions is deprecated in /wp-content/plugins/theplus_elementor_addon/modules/enqueue/plus-generator.php on line 873 [09-Nov-2023 16:54:27 UTC] PHP Deprecated: Creation of dynamic property OTGS\Toolset\Common\Interop\Handler\Elementor\ElementorModules::$view_widget is deprecated in /wp-content/plugins/types/vendor/toolset/toolset-common/inc/autoloaded/interop/handler/elementor/elementor.php on line 112 [09-Nov-2023 16:54:27 UTC] PHP Deprecated: Creation of dynamic property L_Theplus_Elementor_Plugin_Options::$fields is deprecated in /wp-content/plugins/the-plus-addons-for-elementor-page-builder/includes/theplus_options.php on line 60 [09-Nov-2023 16:54:27 UTC] PHP Deprecated: Creation of dynamic property L_Plus_Generator::$transient_extensions is deprecated in /wp-content/plugins/the-plus-addons-for-elementor-page-builder/modules/enqueue/plus-generator.php on line 943 [09-Nov-2023 16:54:27 UTC] PHP Deprecated: Creation of dynamic property Theplus_Elementor_Plugin_Options::$fields is deprecated in /wp-content/plugins/theplus_elementor_addon/includes/theplus_options.php on line 66 [09-Nov-2023 16:54:27 UTC] PHP Deprecated: Creation of dynamic property Plus_Generator::$transient_extensions is deprecated in /wp-content/plugins/theplus_elementor_addon/modules/enqueue/plus-generator.php on line 873 [09-Nov-2023 16:54:27 UTC] PHP Deprecated: Creation of dynamic property OTGS\Toolset\Common\Interop\Handler\Elementor\ElementorModules::$view_widget is deprecated in /wp-content/plugins/types/vendor/toolset/toolset-common/inc/autoloaded/interop/handler/elementor/elementor.php on line 112 [09-Nov-2023 16:54:27 UTC] PHP Deprecated: Creation of dynamic property L_Theplus_Elementor_Plugin_Options::$fields is deprecated in /wp-content/plugins/the-plus-addons-for-elementor-page-builder/includes/theplus_options.php on line 60 [09-Nov-2023 16:54:27 UTC] PHP Deprecated: Creation of dynamic property L_Plus_Generator::$transient_extensions is deprecated in /wp-content/plugins/the-plus-addons-for-elementor-page-builder/modules/enqueue/plus-generator.php on line 943 [09-Nov-2023 16:54:27 UTC] PHP Deprecated: Creation of dynamic property Theplus_Elementor_Plugin_Options::$fields is deprecated in /wp-content/plugins/theplus_elementor_addon/includes/theplus_options.php on line 66 [09-Nov-2023 16:54:27 UTC] PHP Deprecated: Creation of dynamic property Plus_Generator::$transient_extensions is deprecated in /wp-content/plugins/theplus_elementor_addon/modules/enqueue/plus-generator.php on line 873 2023-11-09 08:54:27 user_id 0 redirect by WordPress, 302, https://******.wpenginepowered.com stack trace: WP: class-wp-hook.php:310, WP: plugin.php:205, WP: pluggable.php:1433, WP: pluggable.php:1545, ultimate-member/includes/core/class-logout.php:82, WP: class-wp-hook.php:310, WP: class-wp-hook.php:334, WP: plugin.php:517, WP: template-loader.php:13 [09-Nov-2023 16:54:27 UTC] PHP Deprecated: Creation of dynamic property OTGS\Toolset\Common\Interop\Handler\Elementor\ElementorModules::$view_widget is deprecated in /wp-content/plugins/types/vendor/toolset/toolset-common/inc/autoloaded/interop/handler/elementor/elementor.php on line 112 [09-Nov-2023 16:54:27 UTC] PHP Deprecated: Creation of dynamic property L_Theplus_Elementor_Plugin_Options::$fields is deprecated in /wp-content/plugins/the-plus-addons-for-elementor-page-builder/includes/theplus_options.php on line 60 [09-Nov-2023 16:54:27 UTC] PHP Deprecated: Creation of dynamic property L_Plus_Generator::$transient_extensions is deprecated in /wp-content/plugins/the-plus-addons-for-elementor-page-builder/modules/enqueue/plus-generator.php on line 943 [09-Nov-2023 16:54:27 UTC] PHP Deprecated: Creation of dynamic property Theplus_Elementor_Plugin_Options::$fields is deprecated in /wp-content/plugins/theplus_elementor_addon/includes/theplus_options.php on line 66 [09-Nov-2023 16:54:27 UTC] PHP Deprecated: Creation of dynamic property Plus_Generator::$transient_extensions is deprecated in /wp-content/plugins/theplus_elementor_addon/modules/enqueue/plus-generator.php on line 873 [09-Nov-2023 16:54:27 UTC] PHP Deprecated: Creation of dynamic property OTGS\Toolset\Common\Interop\Handler\Elementor\ElementorModules::$view_widget is deprecated in /wp-content/plugins/types/vendor/toolset/toolset-common/inc/autoloaded/interop/handler/elementor/elementor.php on line 112 [09-Nov-2023 16:54:27 UTC] PHP Deprecated: Creation of dynamic property ElementorPro\Modules\LoopBuilder\Files\Css\Loop::$post_id is deprecated in /wp-content/plugins/elementor-pro/modules/loop-builder/files/css/loop.php on line 57 2023-11-09 08:54:27 user_id 3 WP error code Cannot remove not-exists control., message , data stack trace: WP: class-wp-hook.php:312, WP: class-wp-hook.php:334, WP: plugin.php:517, WP: class-wp-error.php:209, WP: class-wp-error.php:66, elementor/includes/managers/controls.php:871, elementor/includes/base/controls-stack.php:450, elementor-pro/modules/loop-builder/documents/loop.php:198, elementor/includes/base/controls-stack.php:2326, elementor/includes/base/controls-stack.php:509, elementor/includes/base/controls-stack.php:313, elementor/includes/base/controls-stack.php:2413, elementor/includes/base/controls-stack.php:1098, elementor/includes/base/controls-stack.php:2158, elementor/core/base/base-object.php:142, elementor/core/base/base-object.php:40, elementor-pro/modules/loop-builder/files/css/loop-css-trait.php:143, elementor-pro/modules/loop-builder/files/css/loop-css-trait.php:130, elementor-pro/modules/loop-builder/documents/loop.php:253, elementor-pro/modules/loop-builder/documents/loop.php:268, elementor-pro/modules/theme-builder/documents/theme-document.php:173, elementor-pro/modules/loop-builder/skins/skin-loop-base.php:144, elementor-pro/modules/loop-builder/skins/skin-loop-base.php:129, elementor-pro/modules/posts/skins/skin-base.php:876, elementor-pro/modules/loop-builder/skins/skin-loop-base.php:89, elementor/includes/base/skin-base.php:79, elementor/includes/base/widget-base.php:607, elementor/includes/base/widget-base.php:750, elementor/includes/base/element-base.php:464, elementor/includes/base/element-base.php:1375, elementor/includes/base/element-base.php:464, elementor/includes/base/element-base.php:1375, elementor/includes/base/element-base.php:464, elementor/core/base/document.php:1739, elementor/core/base/document.php:1134, elementor/includes/frontend.php:1179, elementor/includes/frontend.php:1074, WP: class-wp-hook.php:310, WP: plugin.php:205, WP: post-template.php:256, T: hello-elementor/template-parts/single.php:25, WP: template.php:787, WP: template.php:720, WP: general-template.php:206, T: hello-elementor/index.php:21, WP: template-loader.php:106 2023-11-09 08:54:28 user_id 3 WP error code invalid_methods, message route not supported., data stack trace: WP: class-wp-hook.php:312, WP: class-wp-hook.php:334, WP: plugin.php:517, WP: class-wp-error.php:209, WP: class-wp-error.php:66, elementor/data/v2/base/base-route.php:322, elementor/data/v2/base/base-route.php:233, WP: rest-api/class-wp-rest-server.php:1194, WP: rest-api/class-wp-rest-server.php:1041, WP: rest-api.php:545, elementor/data/v2/manager.php:318, elementor/data/v2/manager.php:383, elementor/core/files/css/base.php:863, elementor/core/files/css/base.php:354, elementor/core/files/css/base.php:714, elementor/core/files/css/base.php:584, elementor/core/files/css/post.php:222, elementor/core/files/css/post.php:298, elementor/core/files/css/post.php:226, elementor/core/files/css/post.php:298, elementor/core/files/css/post.php:226, elementor/core/files/css/post.php:298, elementor/core/files/css/post.php:178, elementor/core/files/css/base.php:677, elementor/core/files/base.php:155, elementor-pro/modules/loop-builder/files/css/loop-css-trait.php:132, elementor-pro/modules/loop-builder/documents/loop.php:253, elementor-pro/modules/loop-builder/documents/loop.php:268, elementor-pro/modules/theme-builder/documents/theme-document.php:173, elementor-pro/modules/loop-builder/skins/skin-loop-base.php:144, elementor-pro/modules/loop-builder/skins/skin-loop-base.php:129, elementor-pro/modules/posts/skins/skin-base.php:876, elementor-pro/modules/loop-builder/skins/skin-loop-base.php:89, elementor/includes/base/skin-base.php:79, elementor/includes/base/widget-base.php:607, elementor/includes/base/widget-base.php:750, elementor/includes/base/element-base.php:464, elementor/includes/base/element-base.php:1375, elementor/includes/base/element-base.php:464, elementor/includes/base/element-base.php:1375, elementor/includes/base/element-base.php:464, elementor/core/base/document.php:1739, elementor/core/base/document.php:1134, elementor/includes/frontend.php:1179, elementor/includes/frontend.php:1074, WP: class-wp-hook.php:310, WP: plugin.php:205, WP: post-template.php:256, T: hello-elementor/template-parts/single.php:25, WP: template.php:787, WP: template.php:720, WP: general-template.php:206, T: hello-elementor/index.php:21, WP: template-loader.php:106 [09-Nov-2023 16:54:28 UTC] PHP Deprecated: Creation of dynamic property ElementorPro\Modules\LoopBuilder\Files\Css\Loop::$post_id is deprecated in /wp-content/plugins/elementor-pro/modules/loop-builder/files/css/loop.php on line 57 2023-11-09 08:54:28 user_id 0 WP error code Cannot remove not-exists control., message , data stack trace: WP: class-wp-hook.php:312, WP: class-wp-hook.php:334, WP: plugin.php:517, WP: class-wp-error.php:209, WP: class-wp-error.php:66, elementor/includes/managers/controls.php:871, elementor/includes/base/controls-stack.php:450, elementor-pro/modules/loop-builder/documents/loop.php:198, elementor/includes/base/controls-stack.php:2326, elementor/includes/base/controls-stack.php:509, elementor/includes/base/controls-stack.php:313, elementor/includes/base/controls-stack.php:2413, elementor/includes/base/controls-stack.php:1098, elementor/includes/base/controls-stack.php:2158, elementor/core/base/base-object.php:142, elementor/core/base/base-object.php:40, elementor-pro/modules/loop-builder/files/css/loop-css-trait.php:143, elementor-pro/modules/loop-builder/files/css/loop-css-trait.php:130, elementor-pro/modules/loop-builder/documents/loop.php:253, elementor-pro/modules/loop-builder/documents/loop.php:268, elementor-pro/modules/theme-builder/documents/theme-document.php:173, elementor-pro/modules/loop-builder/skins/skin-loop-base.php:144, elementor-pro/modules/loop-builder/skins/skin-loop-base.php:129, elementor-pro/modules/posts/skins/skin-base.php:876, elementor-pro/modules/loop-builder/skins/skin-loop-base.php:89, elementor/includes/base/skin-base.php:79, elementor/includes/base/widget-base.php:607, elementor/includes/base/widget-base.php:750, elementor/includes/base/element-base.php:464, elementor/includes/base/element-base.php:1375, elementor/includes/base/element-base.php:464, elementor/includes/base/element-base.php:1375, elementor/includes/base/element-base.php:464, elementor/core/base/document.php:1739, elementor/core/base/document.php:1134, elementor/includes/frontend.php:1179, elementor/includes/frontend.php:1074, WP: class-wp-hook.php:310, WP: plugin.php:205, WP: post-template.php:256, T: hello-elementor/template-parts/single.php:25, WP: template.php:787, WP: template.php:720, WP: general-template.php:206, T: hello-elementor/index.php:21, WP: template-loader.php:106 2023-11-09 08:54:28 user_id 0 WP error code invalid_methods, message route not supported., data stack trace: WP: class-wp-hook.php:312, WP: class-wp-hook.php:334, WP: plugin.php:517, WP: class-wp-error.php:209, WP: class-wp-error.php:66, elementor/data/v2/base/base-route.php:322, elementor/data/v2/base/base-route.php:233, WP: rest-api/class-wp-rest-server.php:1194, WP: rest-api/class-wp-rest-server.php:1041, WP: rest-api.php:545, elementor/data/v2/manager.php:318, elementor/data/v2/manager.php:383, elementor/core/files/css/base.php:863, elementor/core/files/css/base.php:354, elementor/core/files/css/base.php:714, elementor/core/files/css/base.php:584, elementor/core/files/css/post.php:222, elementor/core/files/css/post.php:298, elementor/core/files/css/post.php:226, elementor/core/files/css/post.php:298, elementor/core/files/css/post.php:226, elementor/core/files/css/post.php:298, elementor/core/files/css/post.php:178, elementor/core/files/css/base.php:677, elementor/core/files/base.php:155, elementor-pro/modules/loop-builder/files/css/loop-css-trait.php:132, elementor-pro/modules/loop-builder/documents/loop.php:253, elementor-pro/modules/loop-builder/documents/loop.php:268, elementor-pro/modules/theme-builder/documents/theme-document.php:173, elementor-pro/modules/loop-builder/skins/skin-loop-base.php:144, elementor-pro/modules/loop-builder/skins/skin-loop-base.php:129, elementor-pro/modules/posts/skins/skin-base.php:876, elementor-pro/modules/loop-builder/skins/skin-loop-base.php:89, elementor/includes/base/skin-base.php:79, elementor/includes/base/widget-base.php:607, elementor/includes/base/widget-base.php:750, elementor/includes/base/element-base.php:464, elementor/includes/base/element-base.php:1375, elementor/includes/base/element-base.php:464, elementor/includes/base/element-base.php:1375, elementor/includes/base/element-base.php:464, elementor/core/base/document.php:1739, elementor/core/base/document.php:1134, elementor/includes/frontend.php:1179, elementor/includes/frontend.php:1074, WP: class-wp-hook.php:310, WP: plugin.php:205, WP: post-template.php:256, T: hello-elementor/template-parts/single.php:25, WP: template.php:787, WP: template.php:720, WP: general-template.php:206, T: hello-elementor/index.php:21, WP: template-loader.php:106 [09-Nov-2023 16:54:32 UTC] PHP Deprecated: Creation of dynamic property L_Theplus_Elementor_Plugin_Options::$fields is deprecated in /wp-content/plugins/the-plus-addons-for-elementor-page-builder/includes/theplus_options.php on line 60 [09-Nov-2023 16:54:32 UTC] PHP Deprecated: Creation of dynamic property L_Plus_Generator::$transient_extensions is deprecated in /wp-content/plugins/the-plus-addons-for-elementor-page-builder/modules/enqueue/plus-generator.php on line 943 [09-Nov-2023 16:54:32 UTC] PHP Deprecated: Creation of dynamic property Theplus_Elementor_Plugin_Options::$fields is deprecated in /wp-content/plugins/theplus_elementor_addon/includes/theplus_options.php on line 66 [09-Nov-2023 16:54:32 UTC] PHP Deprecated: Creation of dynamic property Plus_Generator::$transient_extensions is deprecated in /wp-content/plugins/theplus_elementor_addon/modules/enqueue/plus-generator.php on line 873 [09-Nov-2023 16:54:32 UTC] PHP Deprecated: Creation of dynamic property OTGS\Toolset\Common\Interop\Handler\Elementor\ElementorModules::$view_widget is deprecated in /wp-content/plugins/types/vendor/toolset/toolset-common/inc/autoloaded/interop/handler/elementor/elementor.php on line 112 [09-Nov-2023 16:54:32 UTC] PHP Deprecated: Creation of dynamic property Theplus_SL_Plugin_Updater::$beta is deprecated in /wp-content/plugins/theplus_elementor_addon/includes/Theplus_SL_Plugin_Updater.php on line 41
Thank you!
@aebs90@aebs90
“The Plus Addons for Elementor” plugin is creating a lot of PHP issues.
Looks like a plugin not ready for the latest versions of PHP like 8.1 and 8.2. Which version of the plugin are you using, a new update version 5.2.19 was released 3 days ago.
UM is only doing a logout probably initiated by the “ModSecurity”.
Ask “The Plus Addons for Elementor” plugin support Forum about this issue.
These PHP errors are being seen in a loop which you can use in the report.[09-Nov-2023 16:54:27 UTC] PHP Deprecated: Creation of dynamic property L_Theplus_Elementor_Plugin_Options::$fields is deprecated in /wp-content/plugins/the-plus-addons-for-elementor-page-builder/includes/theplus_options.php on line 60 [09-Nov-2023 16:54:27 UTC] PHP Deprecated: Creation of dynamic property L_Plus_Generator::$transient_extensions is deprecated in /wp-content/plugins/the-plus-addons-for-elementor-page-builder/modules/enqueue/plus-generator.php on line 943 [09-Nov-2023 16:54:27 UTC] PHP Deprecated: Creation of dynamic property Theplus_Elementor_Plugin_Options::$fields is deprecated in /wp-content/plugins/theplus_elementor_addon/includes/theplus_options.php on line 66 [09-Nov-2023 16:54:27 UTC] PHP Deprecated: Creation of dynamic property Plus_Generator::$transient_extensions is deprecated in /wp-content/plugins/theplus_elementor_addon/modules/enqueue/plus-generator.php on line 873 [09-Nov-2023 16:54:27 UTC] PHP Deprecated: Creation of dynamic property OTGS\Toolset\Common\Interop\Handler\Elementor\ElementorModules::$view_widget is deprecated in /wp-content/plugins/types/vendor/toolset/toolset-common/inc/autoloaded/interop/handler/elementor/elementor.php on line 112
- The topic ‘Conditional Nav Menus + Elementor Conflict’ is closed to new replies.