Remove "News from Modern Tribe" from dashboard

Home Forums Calendar Products Events Calendar PRO Remove "News from Modern Tribe" from dashboard

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #866457
    Paolo
    Participant

    Hello,
    I hope this post will be useful for all who want remove the widget “News from Modern Tribe” from Dashboard.
    This is an update from this closed Topic.
    ——-
    The code below works with:
    – The Events Calendar v.3.8.1
    – WordPress v.4.0
    Copy and Paste the code below in the function.php file of your active theme used in WordPress.
    Note: make sure the single quotes in the code are not converted to apostrophes.

    /*
    * Remove "News from Modern Tribe" widget from dashboard
    */
    function remove_tribe_dashboard_widget() {
    remove_meta_box('tribe_dashboard_widget', 'dashboard', 'normal');
    }
    add_action('wp_dashboard_setup', 'remove_tribe_dashboard_widget');

    Regards,
    Paolo 😉

    #866910
    Geoff
    Member

    Hi there, Paolo! Thanks for sharing this–super helpful. 🙂

    An alternative way to remove the Modern Tribe news widget from the WordPress dashboard is to add this line to the wp-config.php file, which is located at the root of your WordPress installation:

    define('TRIBE_HIDE_UPSELL', true);

    I hope this helps and thanks again for sharing. I’m going to go ahead and close this thread, but please feel free to hit us up with a new thread if any other solutions or questions pop up. We’d be happy to help. 🙂

    Cheers!
    Geoff

Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘Remove "News from Modern Tribe" from dashboard’ is closed to new replies.