Jon

Forum Replies Created

Viewing 5 posts - 46 through 50 (of 50 total)
  • Author
    Posts
  • Jon
    Participant

    We have several different tickets with different prices that are configured in EventBrite. I can see them when I import the event, where it says ” Associated Tickets” Is there a way to echo those out, say, in an unordered list, so that we can show our ticket prices and options on our events list view template?

    Sorry if I wasn’t specific enough before. I hope that clarifies. I know you don’t provide theming support but I just need to know if it’s possible and if you know how, that would be amazing.

    in reply to: Don't see anywhere to buy tickets #967572
    Jon
    Participant

    I think i found the problem. That event was listed as a draft for some reason! Sorry for the false alarm!

    in reply to: Don't see anywhere to buy tickets #967571
    Jon
    Participant

    That box is checked to Yes. I tried selecting No, updating the post, and then selecting Yes, and updating the post again and still don’t see any options to purchase tickets.

    in reply to: Don't see anywhere to buy tickets #967563
    Jon
    Participant

    Hi! I have set up the plugins correctly and have imported my events. I don’t see any setting that says “Display tickets on event page?” Where is it?

    Jon
    Participant

    I figured it out using a meta query:
    `wp_reset_postdata();
    $upcoming = new WP_Query();
    $upcoming->query(
    array(
    ‘post_type’=> ‘tribe_events’,
    ‘eventDisplay’ => ‘list’,
    ‘posts_per_page’ => 10,
    ‘paged’ => $paged,
    ‘meta_query’ => array(
    array(
    ‘key’ => ‘_EventOrganizerID’,
    ‘value’ => array(‘11111’),
    ‘compare’ => ‘IN’,
    ),
    ),
    )
    );

    if ($upcoming->have_posts()) :
    while ($upcoming->have_posts()) :
    $upcoming->the_post();

Viewing 5 posts - 46 through 50 (of 50 total)