Nico

Forum Replies Created

Viewing 15 posts - 3,556 through 3,570 (of 6,506 total)
  • Author
    Posts
  • in reply to: Fields Missing in Events View #1124982
    Nico
    Member

    Hi Jessica,

    Thanks for reaching out to us and sorry to hear about this 🙁

    I could reproduce and confirm this is a legit bug introduced in version 4.2 of our plugins. I’ve created a bug report for this, but I still don’t have a date or target version for this. I’ve attached this thread to the report and set the thread status to ‘Pending Fix’ this way you’ll get noticed when this is fixed.

    For now (if you really need this) you can downgrade the plugins to version 4.1 which I could confirm brings the filters back.

    Thanks for the report and sorry for the hassle until we can fix this,
    Best,
    Nico

    in reply to: Ticket price field is missing #1124977
    Nico
    Member

    Hi there Torsten,

    Thanks for reaching out and for your interest in our products 🙂

    Take a look to this Knowledge base article: Use the Event Cost field with Tickets installed. This will add the field back and also use the cost from tickets. If you want to completely override the value of tickets with the cost field then you can use this snippet:


    /* Force the use of the cost field of event and ignore tickets price */
    function tribe_just_show_price_field ( $cost, $post_id, $with_currency_symbol ) {

    $cost_utils = Tribe__Events__Cost_Utils::instance();
    $cost = tribe_get_event_meta( $post_id, '_EventCost' );

    if ( $with_currency_symbol ) {
    $cost = $cost_utils->maybe_format_with_currency( $cost );
    }

    return $cost;
    }
    add_filter( 'tribe_get_cost', 'tribe_just_show_price_field', 10 , 3 );

    /* activate event cost field when using event tickets */
    add_filter( 'tribe_events_admin_show_cost_field', '__return_true', 100 );

    Please let me know if this answers your question,
    Have a great weekend,
    Nico

    in reply to: Feed specific Event to another site #1124973
    Nico
    Member

    Hi James,

    Thanks for reaching out to us! I’ll help you here…

    Is there a way that only events from a specific “organiser” can been shown maybe using RSS?

    You can get an ics/iCal feed (like rss but specific for events) for the Organizer Events by using the following URL structure: http://sitename.com/organizer/org-name/. Do you think this might do the trick?

    is the Google Calendar sync in both directions ie. if we add an event in the plugin will it appear in Google?

    If you refer to iCal Importer add-on, it just imports events from Google Calendar (or any other ics formated feed), doesn’t send events created in your site to Google Calendar. We are exploring the possibility of adding this, which we know will be useful for many folks!

    Please let me know if this answers your questions,
    Have a great weekend,
    Nico

    in reply to: Order the month view later events first #1124971
    Nico
    Member

    Hi @sbsiceland,

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

    Before we jump into a solution for this here I would like to know what version of our plugins you are running. Could you share your system information with me? There were some changes introduced in how events are displayed in month view not long ago.

    The actual order is (or should be): sticky events, ongoing multi day events, all day events, then by start time. You can use the tribe_events_month_daily_events_query_args filter to modify the daily events query, the code for this is in wp-content/plugins/the-events-calendar/src/Tribe/Templates/Month.php. Also please note that marking the events as sticky (https://cloudup.com/cs3RqsclwUB).

    Please let me know about it,
    Best,
    Nico

    in reply to: License Keys not #1124508
    Nico
    Member

    Katie,

    Thanks for the patience here!

    I run some test on my local install. I found out that using any type of license the update shows up and can be executed from the Network admin dashboard only.

    My updates person is only happy to do automatic updates and won’t do manual updates.

    If that person is the network admin then there shouldn’t be any troubles. Is this the case?

    The license keys seems to stick for me. Do you still have this issue?

    Best,
    Nico

    in reply to: Cannot Change “No Events Found” Notice #1124494
    Nico
    Member

    Hi there @reelrock,

    Thanks for reaching out to us! I can help you here…

    To change the no results text you can add the following snippet to your theme (or child theme) functions.php file:


    /* Modify the event-search-no-results notice text */
    add_filter( 'tribe_the_notices', function( $html, $notices ) {

    if ( empty( $notices ) || ! is_array( $notices ) ) return $html;

    if ( isset( $notices[ 'event-search-no-results' ] ) ) {
    $notices[ 'event-search-no-results' ] = 'There were no events found. Please try your search again with City name or Zip Code.';

    return sprintf( '

    • %s

    ', implode( '

  • ', $notices ) );
    }
    return $html;
    }, 10, 2 );
  • Please give this a try and let me know about it,
    Best,
    Nico

in reply to: Events not displaying in Month view #1124460
Nico
Member

Glad to hear that updating to 4.2 solved the issue! Thanks for the patience and collaboration while we worked this out 🙂

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

Nico
Member

Hey Jo,

Sorry to hear the issues are back 🙁

Okay, so doing some more testing. It seems to trigger a search on map view. When i switch to list view it does execute any search when selecting a custom filter.

I want to make List View our default view as users find the map view superfluous when the events contain a map of the event.

I could confirm this is not working as expected in list view, but it does on map view. In fact it does seems to freeze when I try to use any filter and doesn’t make the request. Have you re-tested for conflicts on this one (switching theme and de-activating plugins)? Also, if you deactivate the Age filter, do the rest work as expected? Can you try to de-activate and test each one to see if ti fails for a specific filter?

Best,
Nico

Nico
Member

Hi Craig,

Thanks for following up and sorry for the delay. Andras is out sick for a few days now, and this ticket was out of our radar until I saw it today!

We have just released version 4.2 of all our plugins (take a look) and one of the new features is the ability to import tickets with the CSV importer. Would you like to give this a new try? I see you have lots of events in your site and maybe if they are working correctly it might be a big lift to re-import all of them but can you please test this with a small sample of events in a test site?

Also, just check if simply updating the plugins fixes this or changes the issue in any way.

And finally to summarize this issue, it’s only happening for events that were already imported or if you manually create an event in July (for example) it will enable pagination until that month?

Sorry again for the delay hope we can nail this soon,
Best,
Nico

in reply to: Events not displaying in Month view #1124406
Nico
Member

This reply is private.

in reply to: Error message #1124377
Nico
Member

This reply is private.

Nico
Member

You are welcome Hans! Thanks again for the report 🙂

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: Cannot Install Eventbrite Tickets #1124173
Nico
Member

Stocked to hear! Thanks for the update Carlas 🙂

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: Update pathway #1124172
Nico
Member

Sure Jeff, I’ll keep this open for you to give me a heads-up on the update!

Best,
Nico

in reply to: Default CSS is not loaded #1124170
Nico
Member

Thanks for following up Geir Tore!

I get what you mean but the function wp_login_form outputs a little login form markup, and is not the same as the default WordPress login page. If you would like to redirect to the WordPress default login page or to show a custom login form that a look at this previous thread: Login Page Template for Community Events. Be sure to take a look at the themer’s guide to know how you can edit the community template.

Best,
Nico

Viewing 15 posts - 3,556 through 3,570 (of 6,506 total)