Home / Forums / WoodMart support forum / Disable plugin activation notifications
Home › Forums › WoodMart support forum › Disable plugin activation notifications
Disable plugin activation notifications
- This topic has 7 replies, 2 voices, and was last updated 2 years, 11 months ago by
Artem Temos.
-
AuthorPosts
-
April 2, 2020 at 2:10 am #183957
FareastParticipantHello. I do not use Rev Slider and MailChimp for WordPress. How to disable notifications about their installation and activation? Can eat a hook?
April 2, 2020 at 10:35 am #184045
Aizaz Imtiaz AwanKeymasterHello,
First of all thanks for choosing our Theme, we are glad to be you in the WoodMart WordPress family
:-).To disable the notifications from the plugin there is no option available in theme settings. Because the notifications are WordPress functionality and our theme doesn’t influence this.
You can try adding any third party plugin that better meets your requirements.
OR
You can read the following articles for further help:
https://www.wpbeginner.com/wp-tutorials/how-to-disable-automatic-updates-in-wordpress/
https://wordpress.stackexchange.com/questions/20580/disable-update-notification-for-individual-pluginsBest Regards.
April 2, 2020 at 11:07 am #184058
FareastParticipantNo. Need to turn off the hook TGM Plugin Activation уведомления о необходимости notifications of the need to install Revslider and MailCimp.
April 2, 2020 at 11:58 am #184093
Artem TemosKeymasterHello,
There is no hook to disable TGM plugin notifications. If you want to hide them completely, edit the file
woodmart\inc\theme-setup.phpand change the following code'has_notices' => true,to
'has_notices' => false,Regards
December 7, 2020 at 2:46 pm #248591
LisaAParticipantThis answer alters the parent theme so whe the parent theme is updated, the change will be overwritten.
When using a child theme, what function can be added the child theme’s function.php file to turn these notices off permanently?
December 7, 2020 at 8:50 pm #248592
Artem TemosKeymasterCurrently, there is no hook there. We will add it in our next theme update so you could disable it using the child theme only.
January 18, 2023 at 7:51 pm #436156
sg5ParticipantHi,
We are looking for the same solution. Is this hook now already available?Thanks
January 19, 2023 at 3:36 pm #436365
Artem TemosKeymasterHello,
You need to apply patch #436361 and add this snippet to the functions.php file in your child theme to do this
add_filter( 'woodmart_tgmpa_configs_plugins', 'wd_update_tgmpa_configs' ); function wd_update_tgmpa_configs( $configs ) { $configs['has_notices'] = false; return $configs; }Kind Regards
-
AuthorPosts
Tagged: disable notifications
- You must be logged in to create new topics. Login / Register