Dawn

Forum Replies Created

Viewing 15 posts - 1 through 15 (of 18 total)
  • Author
    Posts
  • in reply to: Ghost post instead of 'No Upcoming Events' #1144139
    Dawn
    Participant

    This reply is private.

    in reply to: Ghost post instead of 'No Upcoming Events' #1143104
    Dawn
    Participant

    This reply is private.

    in reply to: Ghost post instead of 'No Upcoming Events' #1142409
    Dawn
    Participant

    This reply is private.

    in reply to: Events Categories are gone #1124092
    Dawn
    Participant

    Once 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.

    in reply to: Events Categories are gone #1123797
    Dawn
    Participant

    But 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?

    in reply to: Events Categories are gone #1123154
    Dawn
    Participant

    This reply is private.

    in reply to: Events Categories are gone #1123153
    Dawn
    Participant

    ps,
    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.

    in reply to: Events Categories are gone #1123151
    Dawn
    Participant

    Hi,
    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.

    in reply to: Events Categories are gone #1122368
    Dawn
    Participant

    I 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.

    in reply to: Events Categories are gone #1121876
    Dawn
    Participant

    FYI, 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;
    }
    }
    
    in reply to: How to Display Event Time Zone with Event Info? #25339
    Dawn
    Participant

    Bump?

    in reply to: How to Display Event Time Zone with Event Info? #25086
    Dawn
    Participant

    Hi,
    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.9

    thanks,
    alvar

    in reply to: cat page first event title = upcoming events #16783
    Dawn
    Participant

    Hey Rob,

    Sure where can i grab the beta?

    in reply to: cat page first event title = upcoming events #16720
    Dawn
    Participant
    in reply to: output from multiple categories #16235
    Dawn
    Participant

    Hi Jonah,

    tribe_get_events() is what I needed.
    I can’t figure out how to query multiple cats.

    thanks,
    alvar

Viewing 15 posts - 1 through 15 (of 18 total)