George

Forum Replies Created

Viewing 15 posts - 3,331 through 3,345 (of 10,499 total)
  • Author
    Posts
  • in reply to: calendar will not navigate to different month #1125382
    George
    Participant

    Thank you!

    At this link is a video of what I find on your site: https://cloudup.com/ctTdlobIyMX

    I am using Firefox on Mac, though my findings are the same in Safari and Chrome as well.

    Thank you for your patience on this,
    George

    in reply to: Community Events Settings revisions don't get saved #1125380
    George
    Participant

    I’m sorry to hear this Becky! I am a bit stumped because I cannot recreate this problem.

    Though you already posted your System Information, can you post it anew to this thread? Just so I can have a look at it now that you’ve done those updates.


    I am sorry for all of the trouble here; as noted, no matter what I try I am unable to recreate these issues.

    One possible workaround for now is to add a snippet of code like this to your theme’s functions.php file:

    add_filter( 'tribe_get_single_option', 'becky_add_emails_to_community_events_notifications', 1, 3 );

    function becky_add_emails_to_community_events_notifications( $option, $default, $optionName ) {

    if ( 'emailAlertsList' !== $optionName ) {
    return $option;
    }

    $option = '[email protected] [email protected] [email protected]';

    return $option;
    }

    Pay close attention to the line of code that looks like this:

    $option = '[email protected] [email protected] [email protected]';

    Add all of the email address you need here, separated by one space.

    While this may not look like it changes anything in the settings panel, try “submitting” some test events on the community form and see if you get the email updates at those email addresses you enter.

    I hope this helps!
    George

    in reply to: Any plan's for major overhaul? #1125367
    George
    Participant

    This reply is private.

    George
    Participant

    Thank you all for reporting this! We’re working on this urgently given the number of you who’ve come forward with this issue. Stay tuned to this thread for updates!

    — George

    in reply to: Any plan's for major overhaul? #1125345
    George
    Participant

    This reply is private.

    in reply to: show venue and city on single event #1125342
    George
    Participant

    Sure thing, @Pau.

    There are two methods for implementing the sorts of changes you want. The first method is to find this file in your copy of The Events Calendar:

    /the-events-calendar/src/views/single-event.php

    Copy and paste the contents of these files into a new file inside your theme at this location:

    [your-theme]/tribe-events/single-event.php

    In this theme version of the file, you can add the template tags for venue and city and all of that wherever you see fit.

    Read more about this method of creating theme versions of plugin files here ? https://theeventscalendar.com/knowledgebase/themers-guide/


    The second method is simpler. You can use filters and do something like this:

    add_filter( 'tribe_events_event_schedule_details', 'pau_add_content_after_schedule_details', 10, 4 );

    function pau_add_content_after_schedule_details( $schedule, $event_ID, $before, $after ) {

    if ( is_singular( 'tribe_events' ) ) {
    $schedule .= sprintf( '%s, %s <br>', tribe_get_venue( $event_ID ), tribe_get_city( $event_ID ) );
    }

    return $schedule;
    }

    You can use functions tribe_get_venue() and tribe_get_city() to display venue information. Check out the-events-calendar/src/functions/template-tags/venue.php to see all available template tags for venues.

    These template tags can also be used to great effect with the first method described above.

    Best of luck with your customizations!
    George

    in reply to: Title now includes "Events Archive" #1125325
    George
    Participant

    This reply is private.

    George
    Participant

    This reply is private.

    in reply to: reactivate old events #1125309
    George
    Participant

    Hey Christoph,

    I am admittedly having a tough time understanding your questions here. Apologies for the misunderstanding!

    1. Are you referring to “recurring events” only? Or just any type of event?

    2. You say, “the dates run out of time and are then gone.” Can you clarify what this means? Share screenshots of events that are “gone”, if possible—or of what you mean when you write “out of time.”

    Sorry for the confusion—I just want to ensure I understand your questions so I can best help out! 😀

    Thank you,
    George

    in reply to: Update from Version 4.3.1 to 4.2 is not working #1125307
    George
    Participant

    This reply is private.

    in reply to: Theme conflict #1125306
    George
    Participant

    Hey Julien,

    Thanks for confirming this. This indeed does sound like a conflict with your other theme. 🙁

    To resolve the theme conflict, your best course of action here is to contact the theme developer’s support and report this problem. They can hopefully help determine why their theme breaks things in this regard, and offer a solution.

    Sincerely,
    George

    in reply to: calendar will not navigate to different month #1125305
    George
    Participant

    Hey Meg,

    You said in your last reply, “and always get the attached […]”—were you referring to a screenshot you tried to upload?

    If so, sorry for the trouble here, but there is no screenshot posted there.

    You can try sharing screenshots by uploading the screenshot to Imgur.com, Flickr.com, CloudUp.com, or any similar image-hosting site; then just share the links to those images here and I’ll take a look.

    Thank you!
    George

    George
    Participant

    Hey Todd,

    Sorry for the delayed response here!

    Is there a way to have different split options based on event type?

    ☝️ At this time, this is not possible. 🙁 There are the site-wide settings that apply to all events, and you cannot currently choose different arrangements for different events.

    — George

    in reply to: Events are being posted twice or even three times #1125302
    George
    Participant

    Thank you for testing that stuff, @larafarwell.

    From here, I would first recommend updating your plugins to their most recent version. The Events Calendar, Facebook Importer, and all other related plugins we make are now at version 4.2—I would recommend updating to this version on your site and seeing if that affects anything.

    Next, can you confirm if the only events that are getting listed twice or three times, etc., are only events that have been imported from Facebook? Or does ANY event on your site get listed more than once?

    Thank you!
    George

    in reply to: Thread caused by Events Tickets plus #1125246
    George
    Participant

    Glad to hear it! So sorry for the trouble, Nathalie!

Viewing 15 posts - 3,331 through 3,345 (of 10,499 total)