Home › Forums › Calendar Products › Events Calendar PRO › Events Categories are gone
- This topic has 14 replies, 4 voices, and was last updated 9 years, 9 months ago by
Dawn.
-
AuthorPosts
-
June 2, 2016 at 2:11 pm #1121869
Dawn
ParticipantAfter the last upgrade Event Categories no longer appears in the sidebar.
We still have the meta-box, but it is greyed out and uneditable.Local environment working normally.
June 2, 2016 at 2:25 pm #1121876Dawn
ParticipantFYI, we add Regular cats and posts to the cpt via functions (see below).
This has worked for years and still works locally.add_action('init', 'events_register_post_type'); function events_register_post_type() { register_post_type('tribe_events', array( 'rewrite' => array('slug' => 'event', 'with_front' => false), 'labels' => array( 'name' => 'Events', 'singular_name' => 'Event', 'add_new' => 'Add new event', 'edit_item' => 'Edit event', 'new_item' => 'New event', 'view_item' => 'View event', 'search_items' => 'Search events', 'not_found' => 'No events found', 'not_found_in_trash' => 'No events found in Trash' ), 'public' => true, 'menu_position' => 4, 'supports' => array( 'title', 'excerpt' ), 'taxonomies' => array('category', 'post_tag') // this is IMPORTANT )); } add_filter('pre_get_posts', 'query_post_type'); function query_post_type($query) { if(is_archive() || is_tag() || is_home() && empty( $query->query_vars['suppress_filters'] ) ) { $post_type = get_query_var('post_type'); if($post_type) $post_type = $post_type; else $post_type = array('post','tribe_events','attachment'); $query->set('post_type',$post_type); return $query; } }June 2, 2016 at 9:08 pm #1122031Hunter
ModeratorHi and welcome back,
Can you please confirm if the issue still occurs after reviewing our Testing for conflicts guide? We’ll need to rule out a theme and/or plugin conflict before going further.
Thanks for posting and I look forward to your response. Have a great Friday ๐
June 3, 2016 at 11:24 am #1122368Dawn
ParticipantI disabled all plugins and overrides.
Same issue.
When I switch to Twentysixteen the events CPT disappears and I have no access to the posts.
I tried it with just the 2 tribe plugins activated, as well as all plugins activated, same result.June 4, 2016 at 12:07 pm #1122630Hunter
ModeratorWelcome back and thank you for the response,
I’m unfortunately unable to reproduce the issue. To clarify, does the issue occur when you remove the code provided in your second response and revert back to the Twenty Sixteen theme with only our plugins active ? Also, was that code provided to you by a support team member?
Have a good Saturday and thanks again ๐
June 6, 2016 at 12:47 pm #1123151Dawn
ParticipantHi,
Thanks for your continued assistance.
You wouldn’t be able to reproduce the issue unless you were logged in.I think it may not have been clear so to rephrase what I said in the last post, when I change to 2016 theme, the post type does not appear at all in the wp backend. Only tribe events plugins are active, but there is no way to access tribe events posts.
So, no, it does not fix the problem of event categories being grayed out.I tried it with 205 theme, and had slightly different results.
The wp backend menu item for Events appears, but not the submenu item for event posts, only tags, etc (see attached)I believe you need to login to be able to observe any of these problems.
I am working out whether that is possible.June 6, 2016 at 12:50 pm #1123153Dawn
Participantps,
I don’t remember whether that code was provided by tribe support, as it was a very long time ago.
I believe it was not.June 6, 2016 at 12:52 pm #1123154Dawn
ParticipantThis reply is private.
June 7, 2016 at 3:25 pm #1123609Hunter
ModeratorThis reply is private.
June 8, 2016 at 6:42 am #1123797Dawn
ParticipantBut it’s not working even when we use a wp theme and remove all other plugins, or remove the custom code on our theme.
Do you really have no suggestions whatsoever?June 8, 2016 at 11:07 am #1124022Hunter
ModeratorHey Dawn,
Thanks for getting back to me. As you previously stated:
I donโt remember whether that code was provided by tribe support, as it was a very long time ago.
I believe it was not.We are unfortunately unable to support these types of requests due to the code you need assistance with isn’t actually our code, so we are not technically responsible for whether it “works” or not. I hope this clarifies our position on the matter and do apologize I can’t do more. If you need further assistance, we’ve got a list of folks than can possibly help you out. Thanks again and take care.
June 8, 2016 at 12:07 pm #1124092Dawn
ParticipantOnce again, itโs not working even when we use a wp theme and remove all other plugins, or remove the custom code on our theme.
Ie, it’s not working with zero custom code.
June 9, 2016 at 10:27 am #1124632Hunter
ModeratorHey Dawn,
My sincerest apologies for not catching that you had removed the custom code and are still experiencing problems. Can you try reverting to a previous version and see if the Event Categories show back up? You can download prior versions of free version here: https://wordpress.org/plugins/the-events-calendar/developers/
To download previous versions of the PRO version, visit your Downloads page.
As of right now, we don’t have any logged bugs of users reporting similar issues, so I’m not sure what exactly is causing the issue. With that said, I’m afraid you’ll have to work this out on your own as we’re unable to log into customer sites :-/
Let me know if reverting back to a previous version works. I’m not dismissing a bug here, I’m just not sure how to go about identifying the source of conflict. Thank you for understanding and your patience while we work through this.
Cheers!
June 24, 2016 at 9:35 am #1131552Support Droid
KeymasterThis topic has not been active for quite some time and will now be closed.
If you still need assistance please simply open a new topic (linking to this one if necessary)
and one of the team will be only too happy to help. -
AuthorPosts
- The topic ‘Events Categories are gone’ is closed to new replies.
