/**
* Theme Name: Bissful Child
* Description: This is a child theme of Bissful, generated by Auto Installer.
* Author: <a href="https://teconce.com">Teconce</a>
* Template: bissful
* Version: 1.3
*/
<?php
// Hide all admin/plugin notices from dashboard
function jonim_hide_all_admin_notices() {
    if (is_admin()) {
        remove_all_actions('admin_notices');
        remove_all_actions('all_admin_notices');
    }
}
add_action('admin_init', 'jonim_hide_all_admin_notices');

// Hide frontend plugin license / nag messages
function jonim_hide_all_frontend_notices() {
    ?>
    <style>
        /* Hides fixed or absolute positioned messages */
        body > div[style*="position:fixed"],
        body > div[style*="position:absolute"],
        .notice, .update-nag, .plugin-update-tr, div.error, div.updated {
            display: none !important;
        }
    </style>
    <?php
}
add_action('wp_head', 'jonim_hide_all_frontend_notices');
