Hello,
Is there a way of disabling this notice?
As i don’t want to use BBPress but everytime a user logs in they get shown a message:
You don’t have permissions to install BBpress Forum Software
Its highly annoying and makes the user area look unprofessional.
I understand its recomended, but this is highly annoying!
Hey Liam!
I understand you, try adding this at the very end of your theme functions.php file:
function remove_tgmpa_message() {
?>
<style>#setting-error-tgmpa{ display: none; }</style>
<?php
}
add_filter('admin_head', 'remove_tgmpa_message');
Cheers!
Josue
Thanks,
This resolved the issue