• Resolved mattormatt

    (@mattormatt)


    The ‘Rate the theme’ banner for Weblizer/Enigma that appears on the wp-admin pages will not go away. I’m able to close the banner on any individual page but it always comes back when navigating to another page on wp-admin. I’ve reviewed the theme (positive!) but my feelings might change if I have to keep looking at that banner forever.

    • This topic was modified 8 years, 7 months ago by mattormatt.

    The page I need help with: [log in to see the link]

Viewing 7 replies - 1 through 7 (of 7 total)
  • Hi YES, I could not agree more – very irritating. ENIGMA remove it immediately.

    Hello mattormatt, genesis10,

    If you want to remove this banner then just go to theme directory open functions.php and see the below code on line no 492 –

    add_action( 'admin_notices', 'enigma_rating' );
    function enigma_rating() {
        ?>
        <div class="notice error my-acf-notice is-dismissible notice-box" >
            <p><?php _e( 'Thank You for using Weblizar theme, Please give your rating on Enigma theme. Your rating help us to improve our theme' ); ?></p>
    		<p style="font-size:17px;"> 
    			<a style="color: #fff;background: #ec635b;padding: 3px 7px 4px 6px;border-radius: 5px;" href="<?php echo esc_url('https://ww.wp.xz.cn/support/theme/enigma/reviews/?filter=5');  ?>" target="_blank"><?php _e('Rate the theme','enigma') ?></a>
    		</p>
        </div>
        <?php
    }
    function enqueue_custom_admin_style() {
            wp_register_style( 'custom_admin_css', get_template_directory_uri() . '/core/admin/admin-rating.css');
            wp_enqueue_style( 'custom_admin_css' );
    }
    add_action( 'admin_enqueue_scripts', 'enqueue_custom_admin_style' );

    remove all code and save the file. Banner will be gone after removing the code.

    Thank-you.

    Thread Starter mattormatt

    (@mattormatt)

    Thank you. I removed that block of code (line 492 on) from functions.php and that got rid of the “Rate the theme” banner.

    Your Welcome,

    Let us know for further query.

    Thread Starter mattormatt

    (@mattormatt)

    Banner came back with update to Enigma theme version 3.6, made the same modification to functions.php to resolve. Please find a way to allow users to dismiss this banner only one time with each update or remove the banner altogether. Thank you.

    Hi mattormatt,

    We will resolve this issue in next update.

    Thanks.

    Thread Starter mattormatt

    (@mattormatt)

    Thanks. Oddly enough I’ve adjusted to seeing the banner now and have learned to ignore it. Regardless I appreciate the follow through.

Viewing 7 replies - 1 through 7 (of 7 total)

The topic ‘Persistent “Rate the theme” Banner’ is closed to new replies.