We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d8caa9 commit efba214Copy full SHA for efba214
mighty-addons.php
@@ -105,7 +105,10 @@ public function mighty_addons_activation_redirect() {
105
106
public function show_user_what_we_got() {
107
108
- if ( get_option('activate_mighty_addons', false) ) {
+ if ( ! did_action( 'elementor/loaded' ) ) {
109
+ add_action( 'admin_notices', array( $this, 'admin_notice_missing_main_plugin' ) );
110
+ return;
111
+ } elseif ( get_option('activate_mighty_addons', false) ) {
112
113
delete_option('activate_mighty_addons');
114
if(!isset($_GET['activate-multi']))
0 commit comments