designstudio

Forum Replies Created

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • designstudio
    Participant

    Yes, our live version is at http://www.710bc.com/

    To see what is happening just go to LIVE MUSIC and click on the night-time events on Friday and/or Saturday night (the ones with tickets for sale). Then simply add tickets from more than one show to the cart. You will see that when you add the first ticket(s), the proper name of the events go into the cart. When you add tickets from another night… then the tickets in the cart both show the name of the newer event. In other words, the name for the first event changes.

    Please let me know if there is anything else we can provide to debug this issue.

    in reply to: How Do I get ticket end time? #964600
    designstudio
    Participant

    Hello Brian,

    Thanks for the code. This actually is not working in my case and returns empty. Do they get setup through some hooks or loops other than the page loop? The previous developer customized the single-event template but removed a lot of the hooks and left only the page loop.

    in reply to: Export ticket sales by event #959031
    designstudio
    Participant

    Hi Geoff,

    Saw it now. There was a browser add-on hiding the hover effects.
    When I email the attendee list the email is a little broken. Image can be found here.

    If you guys give me an email I can send you the code.

    Andy

    designstudio
    Participant

    Hello Barry,

    I was actually trying to get product id from WooTickets and found some helpful code in the TribeWooTickets class where you have something similar to:

    global $post;
    $agh_ticket_query = new WP_Query(
    array(
    ‘post_type’ => ‘product’,
    ‘meta_key’ => ‘_tribe_wooticket_for_event’,
    ‘meta_value’ => $post->ID,
    ‘meta_compare’ => ‘=’,
    ‘posts_per_page’ => – 1,
    ‘fields’ => ‘ids’,
    ‘post_status’ => ‘publish’,
    )
    );
    $agh_ticket_ids = $agh_ticket_query->posts;
    $event_has_wooticket = tribe_events_product_is_ticket($agh_ticket_ids[0]);

    Thanks for the help,
    Andy

    designstudio
    Participant

    Hi Barry,

    Sounds like that will work. How would I get the product id?

    Andy

    in reply to: Single Event Template #953855
    designstudio
    Participant

    So it took me sometime to figure it out since I have never used your plugin, but the previous developer removed all hooks on the single-event.php file. Is there a list of default like do_action('tribe_events_single_event_after_the_meta'); ?

Viewing 6 posts - 1 through 6 (of 6 total)