Tagged: 

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #177972

    Just a tip for anyone working from a Child Theme who wants to remove the BB Press Forum plugin alert in the admin panel. Instead of deleting a line in the Parent theme’s code, add this code to your Child’s function.php:

    
    add_action( 'after_setup_theme', 'my_late_functions' ); 
         function my_late_functions() {
              remove_action( 'tgmpa_register', 'avia_register_required_plugins' );
         }
    
    #178003

    Hi InSightGraphics!

    Thank you for the hint :)

    Cheers!
    Peter

Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘Child Theme Tip: Remove alert for BB Press Forum Software’ is closed to new replies.