Paul

Forum Replies Created

Viewing 15 posts - 1 through 15 (of 24 total)
  • Author
    Posts
  • in reply to: Sold out tickets – enquiry #50726
    Paul
    Participant

    Barry, fantastic, thats got me up and running. I appreciate the input.

    in reply to: Sold out tickets – enquiry #50685
    Paul
    Participant

    Hi Barry,
    Thanks very much for the reply. I had seen that code in the tickets.php file but ive not been able to get it to work, im missing something.

    Would you mind taking a look at my code so far and give me some pointers how i could incorporate the sold out option im looking for?

    https://dl.dropboxusercontent.com/u/3141/code/single.php

    The site itself is here http://stage.liverpoolticketpackages.co.uk/event/price-v-thompson-echo-arena-liverpool/

    Cheers
    Paul

    in reply to: Remove PDF attachment #49728
    Paul
    Participant

    Barry, thats nailed it, thank you for your assistance with this.

    in reply to: Remove PDF attachment #49721
    Paul
    Participant

    Thanks Barry,
    Unfortunately that doesnt seem to be working, the pdf is still attached to the completed order email.

    in reply to: Purchase email notifications #49526
    Paul
    Participant

    Hi Barry,
    Thanks for looking into this for me.
    Does WooTickets use any custom fields that i would need to tap into?

    Thanks
    Paul

    in reply to: Random Featured event #46636
    Paul
    Participant

    Jonah,
    That now works perfectly. Thank you.

    in reply to: Date column in Events screen #21440
    Paul
    Participant

    Hi Jonah,
    That works perfectly thanks.

    Paul

    in reply to: Change the category url #18150
    Paul
    Participant

    Is this something that isnt possible?

    in reply to: Search by city #17791
    Paul
    Participant

    Sorry to drag this one up but i have a similar request.
    I need to display a list of events based on the city, is there no way to query based on the existing city field?

    in reply to: Random Featured event – Custom Widget #15547
    Paul
    Participant

    Hi Joey,
    That last update did the trick, fantastic, thanks for your help with this.

    Cheers
    Paul

    in reply to: Random Featured event – Custom Widget #15375
    Paul
    Participant

    Hi Joey,
    Thanks for your input on this, really appreciate your help. Unfortunately that code isn’t working for me.
    Heres what i have http://db.tt/r0mVAOmf as before it is just outputting the next featured event.

    Having die(var_dump($post)); in there caused an error.

    Have i got something wrong?

    in reply to: Random Featured event – Custom Widget #15339
    Paul
    Participant

    Hi Jonah,
    Ive gone down the WP_Query route as suggested, but still finding the same issue. I can get a random event from the featured category if i leave out ‘eventDisplay’=>’upcoming’ but that allows past events to display, which i dont want.

    Heres the query


    $featured_query = new WP_Query( array(
    'post_type' => 'tribe_events',
    'posts_per_page' => '1',
    'orderby' => 'rand',
    'eventDisplay'=>'upcoming',
    'tax_query'=> array(
    array(
    'taxonomy' => 'tribe_events_cat',
    'field' => 'slug',
    'terms' => 'featured',
    'operator' => 'IN'
    )
    )
    )
    );

    while ( $featured_query->have_posts() ) : $featured_query->the_post();

    This code outputs the next event from the featured category, but the orderby rand seems to be ignored or overridden by eventDisplay. Am i missing something obvious here?
    Appreciate any help you can give.

    in reply to: Random Featured event – Custom Widget #15311
    Paul
    Participant

    Im unsure how to replace tribe_get_events with WP_Query correctly.

    in reply to: Random Featured event – Custom Widget #15310
    Paul
    Participant

    Hey Jonah,
    Thanks for the reply. Im struggling to get this working. Can you give me some pointers.

    This is what i have, but isnt working

    if( function_exists( 'tribe_get_events' ) ) {
    $posts = tribe_get_events(array(
    'eventDisplay'=>'upcoming',
    'numResults'=>1,
    'orderby'=>'rand',
    'tax_query'=> array(
    'taxonomy' => 'tribe_events_cat',
    'field' => 'slug',
    'terms'=> 'featured',
    )));

    $template = TribeEventsTemplates::getTemplateHierarchy('widget-featured-display');
    }

    in reply to: Way to filter events based on category #15265
    Paul
    Participant

    Ive added a custom menu to a site using the category url to filter events in certain categories.

    For example : http://www.url.co.uk/events/category/sport/

    events is the slug you have set in the ECP settings.

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