• I installed the FREE version of the Enigma-Parallax Theme and now there is a welcome message appearing at the top of all my admin pages. I have clicked the X to close the message, but any refresh of the page or any new page I go to, the message reappears.

    Is there a way to turn this off other than purchasing a premium product? I get it that you’re trying to promote people spending money, but if EVERY free plugin had this annoying message at the top of the admin pages that won’t go away, then we would be stuck with dozens of sticky welcome messages. This borders obnoxious!

    Please program your plugin to remove the welcome message once it has been closed by the user. Stuff like this makes me want to avoid your products, NOT buy them. It’s counter productive.

    Thank you!
    Arial Burnz

Viewing 6 replies - 1 through 6 (of 6 total)
  • Hello Arial,

    This banner is only for the marketing of our premium products.

    If you want as like told above then please contact us here. We will solve your issue.

    Thanks.

    Thread Starter Arial Burnz

    (@arialburnz)

    Just sent a message. Thank you!

    It would be nice, though, if I didn’t have to jump through these hoops to get this removed. I strongly recommend building into the theme the ability for that message to disappear once it has been closed and not reappear.

    Hello,

    Please check your email.

    Thanks.

    Hello,

    Please make a child-theme of your Free Enigma Parallax Theme first.

    If you already have it, Kindly place the below-given code in your functions.php file.

    function Child_Theme_disable_admin_notices() {
            global $wp_filter;
                if ( is_user_admin() ) {
                    if ( isset( $wp_filter['user_admin_notices'] ) ) {
                                    unset( $wp_filter['user_admin_notices'] );
                    }
                } elseif ( isset( $wp_filter['admin_notices'] ) ) {
                            unset( $wp_filter['admin_notices'] );
                }
        }
    add_action( 'admin_print_scripts', 'Child_Theme_disable_admin_notices' );

    Let us know for further query.

    Thanks.

    Thread Starter Arial Burnz

    (@arialburnz)

    Thank you.

    You are most welcome.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Remove Welcome Message’ is closed to new replies.