Nico

Forum Replies Created

Viewing 15 posts - 2,356 through 2,370 (of 6,506 total)
  • Author
    Posts
  • in reply to: ical feed for app #1175143
    Nico
    Member

    Hey April,

    Thanks for reaching out to us!

    Sure it’s possible, just let me know how you plan to exclude those events. Maybe by using an Event Category or a Tag?

    Please let me know about it and I’ll create a snippet for this,
    Thanks so much,
    Nico

    in reply to: Additional Columns in the Attendees list CSV export #1174909
    Nico
    Member

    Hey Jack,

    Thanks for getting in touch with us! I’ll help you here 🙂

    Hopefully this is possible now! Can you please let me know which data are you trying to get into the export? It will also help to know which e-commerce plugin you are using alongside Event Tickets Plus.

    Please let me know about it,
    Best,
    Nico

    Nico
    Member

    Thanks for confirming Salle 🙂

    I’ll go ahead and close out this thread, but if you need help with anything else please don’t hesitate to create a new one and we will be happy to assist you.

    Best,
    Nico

    in reply to: Filter Bar: Autocomplete and multiple values #1173876
    Nico
    Member

    Hey Martin,

    Thanks for getting in touch with us and for your interest in our plugins too 🙂

    FilterBar uses Chosen Multiple Select to render autocomplete filters. This is not exactly what you showed but I guess it might work for you. You can also remove Chosen and use another library or custom code for this – but you’ll need a bit of custom coding to get that going.

    Please let me know about it,
    Best,
    Nico

    Nico
    Member

    Hey thanks for the heads-up 🙂

    Stocked to hear you are set now!

    I’ll go ahead and close out this thread, but if you need help with anything else please don’t hesitate to create a new one and we will be happy to assist you.

    Have a great weekend,
    Nico

    Nico
    Member

    Thanks for following up Alexander…

    Can you please make sure the template override is in place? Does it show the attendee meta at least?

    You can also try to switch to TweentySixteen theme (move the template override) and test this without any other plugin active.

    Please let me know about it,
    Best,
    Nico

    in reply to: Google Events Timezone Index from json #1173714
    Nico
    Member

    Hey Brendan,

    Thanks for the patience while I worked on this!

    We still haven’t concluded if this is a legit bug or not. While the date and time format is correct in UTC, there’s no indicator in the documentation that we should present the dates in UTC.

    Please give the snippet below a try, just paste in into your theme’s (or child theme’s) functions.php file:

    /* Tribe, modify json ld dates */
    function tribe_modify_json_ld_event_dates ( $_data, $args, $event ) {

    $event_tz_string = get_post_meta( $event->ID, '_EventTimezone', true );
    $tz_mode = tribe_get_option( 'tribe_events_timezone_mode', 'event' );
    $tz_string = $event_tz_string && $tz_mode === 'event' ? $event_tz_string : Tribe__Events__Timezones::wp_timezone_string();

    $_data->startDate = date_create( tribe_get_start_date( $event->ID, true, Tribe__Date_Utils::DBDATETIMEFORMAT ) )->setTimezone( new DateTimeZone( $tz_string ) )->format( 'c' );
    $_data->endDate = date_create( tribe_get_end_date( $event->ID, true, Tribe__Date_Utils::DBDATETIMEFORMAT ) )->setTimezone( new DateTimeZone( $tz_string ) )->format( 'c' );

    return $_data;
    }
    add_filter( 'tribe_json_ld_event_object','tribe_modify_json_ld_event_dates', 10, 3 );

    Let me know if the date is correct now,
    Best,
    Nico

    in reply to: European tax exemption #1173696
    Nico
    Member

    Hey Casten,

    Thanks for the patience while I got an answer!

    I’ve been informed that we don’t charge tax to anyone at any time- regardless of whether you have entered a VAT number or not. The price for the renewal is always $62- seeing no difference is correct.

    If you have any specific questions please ask them and I’ll do my best to answer them or pass them on to the appropriate person,
    Cheers,
    Nico

    Nico
    Member

    Hey Alexander,

    The code looks good to me! I just tried it out (made some minor tweaks) and instead of printing out each field I added a simple var_dump. This way you’ll be able to see the field labels:

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

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

    in reply to: custom links #1173531
    Nico
    Member

    Hi there Mike,

    Thanks for getting in touch with us!

    Please take a look at this article: Can you have multiple calendars?, in there various alternatives are suggested. One is to use widgets as you are doing, and if you decide to continue to use that alternative I can look into customizing those view more links to redirect to the corresponding category page in the calendar.

    Please let me know your thoughts on this,
    Best,
    Nico

    in reply to: Supported Ecommerce solutions for Event Tickets Pro #1173527
    Nico
    Member

    Hi there Josh,

    Thanks for getting in touch with us and for you interest in our products 🙂

    Event Tickets Plus works with various e-commerce frameworks: WooCommerce, Easy Digital Downloads, WP-Ecommerce or Shopp. Each e-commerce plugin supports various payment method, some of them out of the box some of them via extensions.

    For the particular combo you are asking about: Square + WooCommerce, that seems possible with the Square for WooCommerce extension. This should play nicely with our ticketing plugins, as once the tickets are added to the cart the payment is processed entirely by the e-commerce plugin (Woo in this case).

    Anyway I suggest you try this out, 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. WooCommerce has a very similar policy for their extensions.

    Please let me know if there’s anything else I can help you with,
    Best,
    Nico

    in reply to: Is Events Calendar 4.2.7 #1173525
    Nico
    Member

    Hi there Jesse,

    Thanks for getting in touch with us 🙂

    As you say it’s highly advised to match major versions of the plugins. By major versions I’m referring to the first two numbers (4.2). The third number refers to the current maintenance release (4.2.1) and it’s not the same for all plugins. Finally in some cases you’ll see a fourth number (4.2.7.1) which indicates a hotfix release to squash a security related issue or any other high impact issue that cannot wait until the next maintenance release is out. You can find more details on this in our release schedule page.

    So rounding up, the first two number need to be the same for all plugins (4.2.x). And it’s ok to use The Events Calendar 4.2.7 with Events Calendar PRO 4.2.6 🙂

    Please let me know if this answers your question,
    Best,
    Nico

    in reply to: Filter by region #1173416
    Nico
    Member

    Hi there @mauitime,

    Thanks for getting in touch with us! I’ll help you here…

    1) Am I missing something? Is there a way to do this that I just haven’t seen yet?

    Since version 4.2 of Filter Bar, there are new filters available for geolocation: Country, City & State/Province. You should see them in ‘WP-Admin > Events > Settings > Filters > Available Filters’.

    2) If I haven’t missed something is there a direction or documentation you could point me to so i could program a solution to add an additional filter query parameter and get the wp_query calls modified as well?

    The above mentioned filters should do the trick for you!

    Please let me know about it,
    Best,
    Nico

    in reply to: Remove Weekend on Month-view #1173407
    Nico
    Member

    Hi Teresa,

    Thanks for getting in touch with us!

    Unfortunately there’s no settings to hide weekends from month view in our plugin. But this is possible with some CSS, please view this past thread where a solution is given for this.

    Please let me know if that helps,
    Best,
    Nico

    Nico
    Member

    Glad to hear the suggested solution works for now 🙂

    I’ll try to dig to the bottom of the issue and see if it’s a legit bug or a config issue (particular to your site). I also wasn’t able to find any known bugs that I could related to this. Maybe it’s related to the data you imported to the site? You recall seeing this error before the import?

    Can you please send a database dump of the site? I’ll try to mount that in my local site and see if I’m able to reproduce the issue hence find a fix for it!

    In ‘Events > Settings > General’ there’s a button to fix venue Geolocation data, I run the fix but the Google Maps API reached the daily limit before all venues were processed. Can you try to so this tomorrow once again until all venues are fixed?

    Not sure if it will help but when you have a minute please try this out!

    Thanks,
    Nico

Viewing 15 posts - 2,356 through 2,370 (of 6,506 total)