Forum Replies Created
-
AuthorPosts
-
June 8, 2015 at 2:48 pm in reply to: Is there a way to list eventbrite tickets and prices as list items somewhere? #967962
Jon
ParticipantWe 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.
Jon
ParticipantI think i found the problem. That event was listed as a draft for some reason! Sorry for the false alarm!
Jon
ParticipantThat 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.
Jon
ParticipantHi! 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?
June 5, 2015 at 2:04 pm in reply to: Can i add a query parameter to only show events from specific organiser? #967538Jon
ParticipantI 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(); -
AuthorPosts
