Forum Replies Created
-
AuthorPosts
-
George
ParticipantThank 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,
GeorgeGeorge
ParticipantI’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!
GeorgeGeorge
ParticipantThis reply is private.
June 10, 2016 at 1:36 pm in reply to: Tons of Warning messages in error Log upon upgrading to version 4.2 #1125365George
ParticipantThank 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
George
ParticipantThis reply is private.
George
ParticipantSure 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.phpCopy and paste the contents of these files into a new file inside your theme at this location:
[your-theme]/tribe-events/single-event.phpIn 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!
GeorgeGeorge
ParticipantThis reply is private.
June 10, 2016 at 12:27 pm in reply to: PHP Fatal error: Call to undefined function tribe_is_week() #1125323George
ParticipantThis reply is private.
George
ParticipantHey 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,
GeorgeGeorge
ParticipantThis reply is private.
George
ParticipantHey 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,
GeorgeGeorge
ParticipantHey 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!
GeorgeJune 10, 2016 at 11:43 am in reply to: Selling Tickets where some events all money goes 100% to organizer and others ar #1125304George
ParticipantHey 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
George
ParticipantThank 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!
GeorgeGeorge
ParticipantGlad to hear it! So sorry for the trouble, Nathalie!
-
AuthorPosts
