• Resolved Law

    (@laucoste)


    Hi Phil,

    This plugin is great.

    When my users access the admin page, they see :
    “Age Gate 3 is coming soon. Find out more”

    I need to hide this message from them (without having to click on the cross…).

    How to do that ?

    Regards,
    Law

Viewing 1 replies (of 1 total)
  • Plugin Author Phil

    (@philsbury)

    Hi @laucoste,

    If you’re sticking to AG2 for the time being, then you can use a bit of CSS to hide that for everyone, this can go in your functions.php or a little plugin:

    
    add_action('admin_head', function() {
        ?>
            <style>
                #ag-3-message {display: none !important}
            </style>
        <?php
    });
    

    Thanks
    Phil

Viewing 1 replies (of 1 total)
  • The topic ‘Cancel announcing message display’ is closed to new replies.