Christina

Forum Replies Created

Viewing 15 posts - 1 through 15 (of 18 total)
  • Author
    Posts
  • in reply to: WooTickets Not Saving, Can't Edit in WooCommerce, etc. #54424
    Christina
    Participant

    One last thing. Is it possible for there to be a link that shows up on the bottom of each event listing on the main events list that says “Click here to purchase tickets” and sends people to the product page, or something to that effect? Tickets are not required for all of this clients’ events, so it would be ideal if the link would only show up if there in fact was a ticket for sale.

    Thanks!

    in reply to: WooTickets Not Saving, Can't Edit in WooCommerce, etc. #54421
    Christina
    Participant

    The amount of tickets also defaults to 0 instead of 1 above the “Add to Cart” button. Is there a way to make it display 1 by default like the rest of the catalogue does?

    in reply to: WooTickets Not Saving, Can't Edit in WooCommerce, etc. #54418
    Christina
    Participant

    Duh. I’m an idiot. Sorry about that!

    This fixed my major problems. The other issue is that when the product is added to the cart, it doesn’t register as a “digital” product, so it says there’s an invalid shipping method. Is there a way to automate is so that clients don’t have to make it a two step process of editing the product itself?

    in reply to: WooTickets Not Saving, Can't Edit in WooCommerce, etc. #54393
    Christina
    Participant

    Plugin download doesn’t work.

    Unpacking the package…
    The package could not be installed. PCLZIP_ERR_BAD_FORMAT (-10) : Unable to find End of Central Dir Record signature

    in reply to: WooTickets Not Saving, Can't Edit in WooCommerce, etc. #54218
    Christina
    Participant

    On the front and back end of the event listing itself, it says that the event is free (or on the backend says: £0 Sold 0 of 0, it won’t save any amount – just acts like it’s zero). When you add the ticket to the cart, the cart knows the real price on the cart page (in this case, £7). Also, it created a “Ticket” category, but nothing shows up in it.

    There are lots of things wrong here.

    in reply to: Calendar listing all my posts and ignoring my events! #53129
    Christina
    Participant

    Downgrading fixed it for me, unfortunately I lost some customizations, but all in all I’m glad things are working again.

    Here’s some further information, Barry: CANVAS 5.0.13 is definitely incompatible with Events 3.0

    in reply to: Calendar listing all my posts and ignoring my events! #53121
    Christina
    Participant

    Do you guys have an ETA on when there will be a fix for Canvas incompatibility?

    in reply to: Calendar listing all my posts and ignoring my events! #53108
    Christina
    Participant

    Is there a link to download the old version of the plugin somewhere? I need to get these events up and running ASAP!

    in reply to: Calendar listing all my posts and ignoring my events! #53105
    Christina
    Participant

    I also am running Canvas and v3 did the same thing. I’m running an old version though – CANVAS 5.0.13

    Christina
    Participant

    I don’t know if this has to do with anything, but the main plugin won’t hold onto our pro license. It says that there’s an update, I go and enter the license key and it verifies, and then when I navigate away from that page it says that the key needs to be entered again. I’ve done it like 3 times.

    in reply to: Exclude One Category from Upcoming Events List #46894
    Christina
    Participant

    I’m sorry, I copied and pasted the wrong code snippet, but neither work.

    The one you just posted (put below) doesn’t take the events out of the list at all.

    add_action( ‘pre_get_posts’, ‘exclude_events_category’ );
    function exclude_events_category( $query ) {
    if ( tribe_is_event() && !tribe_is_day() && !is_single() && !is_tax() && !tribe_is_month() ) {
    $query->set( ‘tax_query’, array(
    array(
    ‘taxonomy’ => TribeEvents::TAXONOMY,
    ‘field’ => ‘slug’,
    ‘terms’ => array(‘outside-events’),
    ‘operator’ => ‘NOT IN’
    )
    )
    );
    }
    return $query;
    }

    in reply to: Exclude One Category from Upcoming Events List #46807
    Christina
    Participant

    Nope- I’m getting the same problems : [

    add_action( ‘pre_get_posts’, ‘exclude_events_category’ );
    function exclude_events_category( $query ) {
    if ( $query->query_vars[‘eventDisplay’] == ‘upcoming’ || $query->query_vars[‘eventDisplay’] == ‘past’ && $query->query_vars[‘post_type’] == TribeEvents::POSTTYPE && !is_tax(TribeEvents::TAXONOMY) && empty( $query->query_vars[‘suppress_filters’] ) ) {
    $query->set( ‘tax_query’, array(
    array(
    ‘taxonomy’ => TribeEvents::TAXONOMY,
    ‘field’ => ‘slug’,
    ‘terms’ => array(‘outside-events’),
    ‘operator’ => ‘NOT IN’
    )
    )
    );
    }
    return $query;
    }

    in reply to: Exclude One Category from Upcoming Events List #46187
    Christina
    Participant

    Thanks. This code causes two problems, however.

    This makes ALL of the posts from that category disappear – not just on the upcoming events list page, but even in it’s own category page. The category displays as empty with the above code in place. I need them to be excluded from the main upcoming events list, but be visible on their own specific category page.

    This also caused the title of the upcoming events list page to have the title of the first event listed. I had fixed that with a little code snipped that manually set the titles, but this code rendered that invalid.

    in reply to: Change Date Format to UK Convention (Day/Month/Year) #44247
    Christina
    Participant

    That worked beautifully, thank you!

    in reply to: Category Page Title is Displaying the Event Title #44246
    Christina
    Participant

    Changing it to the events template still didn’t work. It’s believe it’s because I’ve added a bit of code to list.php:

    Upcoming Events

    Past Events Archive

    Is there something I could use besides to specify the category, because it’s clearly picking up the title of the first event and using that…

    I can hack it by specifying page numbers for each category, but would much rather use code that will make sure it’s taken care of when new categories are created.

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