Boris

Forum Replies Created

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • Boris
    Participant

    Thank you, the update has resolved my issue.

    Boris
    Participant

    I’ve been able to temporarily resolve the issue by rolling back not the Pro plugin but The Events Calendar plugin from 4.6.22 back to 4.6.21

    in reply to: disable Tag meta box on the backend #1527170
    Boris
    Participant

    Yep! That works. Many thanks.

    in reply to: disable Tag meta box on the backend #1526249
    Boris
    Participant

    Thanks! Removing the Tag metabox works. Putting in the appropriate execution time did the trick.

    This solution was hinted at in the Notes section of https://codex.wordpress.org/Function_Reference/remove_meta_box but gave no obvious recommendation.

    However, removing the Events/Tags submenu still doesn’t work.

    I tested to see if I could remove other items. I was able to remove Events/Venues and the default Post/Tags submenu items in the code below:

    add_action('admin_menu', 'my_remove_sub_menus', 999);
    function my_remove_sub_menus() {
        remove_submenu_page( 'edit.php?post_type=tribe_events', 'taxonomy=post_tag&post_type=tribe_events' ); //no luck
        remove_submenu_page( 'edit.php', 'edit-tags.php?taxonomy=post_tag' ); //works
        remove_submenu_page( 'edit.php?post_type=tribe_events', 'edit.php?post_type=tribe_venue'); //also works
    }
    in reply to: Allow anonymous users to edit tags #1525439
    Boris
    Participant

    Thanks, we decided to scrap tags altogether because we were already on the fence about their usefulness for our purposes.

Viewing 5 posts - 1 through 5 (of 5 total)