Nico

Forum Replies Created

Viewing 15 posts - 2,371 through 2,385 (of 6,506 total)
  • Author
    Posts
  • in reply to: Linking the List-Image #1173376
    Nico
    Member

    Hey Niko,

    Thanks for following up! No worries on the delay πŸ˜‰

    I guess the error might be due to formatting issue from copying the snippet directly from the forum (I’ve re-checked that the code is working on my end). Can you try copying/pasting from this GitHub Gist instead?

    https://gist.github.com/niconerd/a99d6054933cf6c868ee7a6ae2801ddb

    Regarding where this needs to work, let’s try to make it work at all and then we can add some view conditionals!

    Please let me know if it works now,
    Best,
    Nico

    in reply to: Event Date in SEO Title #1173232
    Nico
    Member

    Hey Bradley,

    Thanks for getting in touch with us! I’ll help you on this πŸ™‚

    Try adding the snippet below to your theme’s (or child theme’s) functions.php file:

    /* Tribe, add event date to Yoast Seo title */
    function tribe_add_date_to_title( $title ) {

    if( !class_exists('Tribe__Events__Main') || !is_singular( Tribe__Events__Main::POSTYPE ) ) return $title;

    // tribe_get_start_time docs https://theeventscalendar.com/function/tribe_get_start_time/
    return $title . ' ' . tribe_get_start_time(null);
    }

    add_filter('wpseo_title', 'tribe_add_date_to_title');

    Please let me know if this works for you,
    Best,
    Nico

    Nico
    Member

    Thanks for following up Alexander!

    I made a template override for you to get past events (from a year ago) and show meta info as well:

    https://gist.github.com/niconerd/043e5b60055930ffe5e1178f73424473

    This is intended to be a starting point for your customization and will surely need to be tweaked to fit your needs!

    Please let me know if you can make it work,
    Best,
    Nico

    in reply to: Short-Term Solution for Event Reminder Emails #1173206
    Nico
    Member

    It might be worth checking in with the customizers you currently list to make sure they’re still available for this type of work. I emailed a couple of them on September 23 and still haven’t received any response.

    That’s an interesting comment Tim! I’ll make sure I bring this up to the team πŸ™‚

    in reply to: attendees not displaying on the ticket #1173192
    Nico
    Member

    Hey Alexander,

    Thanks for getting in touch! Glad to help you out on this one as well πŸ™‚

    What you describe is actually a known bug we are going to fix in the next maintenance release (take a look at our release schedule). In the meantime we have a helper plugin that will fix this for you β†’ Event Tickets: Additional Email Options. Please download, install and activate the plugin. Once that’s done go to WP-Admin > Events > Settings > Tickets > Tickets email: Add Attendee Meta Info.

    Please let me know if this works for you,
    Best,
    Nico

    Nico
    Member

    Hey Chris,

    Thanks for reaching out to us on this!

    An Evenbrite profile can automatically publish on Facebook Events, via official fb event API. So would this be the easiest way to export events from TEC to Facebook Events? (by using evenbrite as a mediator)

    I guess this might work, ‘Auto Publish on Facebook’ is an EventBrite feature so I’m not sure about it but sounds like something that could work.

    I don’t see you have a license for EventBrite tickets to try this out. Please note that while we don’t have a trial period, you can go ahead and purchase the products for testing. If you decide they are not what you are looking for, you can ask for a full refund within 30 days of purchase. For more information take a look at our refund policy.

    This will give you the change to try this out and if it doesn’t work as expected, then you can ask for the refund. Sounds good?

    Please let me know about it,
    Best,
    Nico

    in reply to: Filter Bar covers calendar when responsive in mobile #1173177
    Nico
    Member

    Thanks for the follow-up Chuck!

    Now my filter bar collapses and stays collapsed.

    Not sure I understand what you mean can you elaborate a bit on this?

    I would like the filter bar to be open at least on the desktop size.

    The snippet sent should only affect the mobile layout. You can control if the filter bar initial state (open/closed) in Events > Settings > Filters > Filters Default State
    .

    Please let me know about it,
    Best,
    Nico

    Nico
    Member

    This reply is private.

    Nico
    Member

    This reply is private.

    in reply to: European tax exemption #1173033
    Nico
    Member

    Hi there Carsten,

    Thanks for reaching out about this!

    I must admit I’m not versed in this type of taxes issues but I’ve asked our manager about it. I’ll get back to you when I have a reply from her πŸ™‚

    Best,
    Nico

    Nico
    Member

    This reply is private.

    in reply to: Events not appearing on homepage #1172992
    Nico
    Member

    This reply is private.

    Nico
    Member

    Thanks for following up Alexander!

    So is there shortcode similar to displaying all the confirmations buying by the users ? like upcomming but with passed confirmations ?

    Unfortunately no, there’s no other shortcode but maybe if you elaborate a bit more on this I can help you code a custom solution for this. If I understood this correctly you would need to show confirmations for upcoming events and for passed events? All passed events?

    2/ is it possible on this page ( or on the order page ) to displaying, the tickets field set of the ticket. It would be so great, like in woocommerce box office : https://docs.woocommerce.com/document/woocommerce-box-office/?_ga=1.99980574.1034639481.1467647891

    You mean show the ‘attendee meta’ the user entered for that ticket? If that’s what you are looking for, you can create a template override (as described in our themer’s guide) for ‘event-tickets/src/views/shortcodes/my-attendance-list.php’ to add attendee meta to my attendance shortcode output.

    Please let me know about if the above helps,
    Best,
    Nico

    Nico
    Member

    Hi there Josh,

    Thanks for reaching out to report this issue and for the suggested fix too!

    This is actually a known bug that has been around for some time. I’ll update our internal ticket with your suggested solution and try to move the ticket forward πŸ™‚

    I’ve linked this thread with the ticket, so you’ll get a heads-up when this is fixed and shipped. Also, I’ll set this thread to Pending fix so it doesn’t get autoclosed.

    Thanks once again,
    Best,
    Nico

    in reply to: Embeddnig Events on Post with URL #1172933
    Nico
    Member

    Hey Cory,

    Thanks for getting in touch with us! I can help you on this πŸ™‚

    Let me start by saying, I see the embed pretty much like the ‘demo’ one β†’ https://cloudup.com/cGC7pjTm0lX . Maybe you could sort this out? In case not, can you please send over the URL in which you are embedding the event?

    The embed output is structured in a series of templates located in ‘wp-content/plugins/the-events-calendar/src/views/embed/’, which you can override as any others following the instructions in our themer’s guide.

    Please let me know about it,
    Best,
    Nico

Viewing 15 posts - 2,371 through 2,385 (of 6,506 total)