Forum Replies Created
-
AuthorPosts
-
Dawn
ParticipantThis reply is private.
Dawn
ParticipantThis reply is private.
Dawn
ParticipantThis reply is private.
Dawn
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.
Dawn
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?Dawn
ParticipantThis reply is private.
Dawn
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.Dawn
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.Dawn
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.Dawn
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; } }Dawn
ParticipantBump?
Dawn
ParticipantHi,
Trying to do this, I noticed that I didn’t have the additional fields tab.
I upgraded the (no-pro) plugin, still nothing.
I noticed that the site does not have a license enabled.
I went to https://theeventscalendar.com/license-keys/ and freed up keys.
However, on the licenses tab, there is no area to enter a license.
Screenshot:
https://dl.dropbox.com/u/5564830/support/forge-tec-bug2.png
I also tried the [check again] button under updates that is suggested in the plugin Licenses tab.
WP 3.4.1
Events Calendar PRO 2.0.2
The Events Calendar 2.0.9thanks,
alvarDawn
ParticipantHey Rob,
Sure where can i grab the beta?
Dawn
ParticipantHi Rob,
This is a custom theme.
http://dl.dropbox.com/u/5564830/support/forge-tec-bug.pngDawn
ParticipantHi Jonah,
tribe_get_events() is what I needed.
I can’t figure out how to query multiple cats.thanks,
alvar -
AuthorPosts
