Forum Replies Created
-
AuthorPosts
-
George
ParticipantHey Karly,
Thanks for reaching out. Community Events simply loads the same organizer markup used in the wp-admin event creation screens, so the markup you’re looking for is actually in this file in The Events Calendar core plugin itself, not in Community Events:
the-events-calendar/src/Tribe/Admin/Organizer_Chooser_Meta_Box.phpI hope this helps!
— George
George
ParticipantHey Patrick,
Thanks for reaching out!
The sort of user-by-user event listing you describe here is unfortunately not possible unless you were to write custom code to do that—or hire someone to write that custom code for you.
If each user is the “author” of their own events, then you can retrieve events by author by specifying an ‘author’ parameter in function calls of tribe_get_events(), like this:
$events_for_author_123 = tribe_get_events( array(
'posts_per_page' => 5,
'start_date' => current_time( 'Y-m-d' ),
'author' => array( 123 )
));
This example code gets the next 5 upcoming events from the user on your site whose User ID is 123.
We cannot help with custom coding, so there is unfortunately not much more insight I can provide in terms of custom examples and such, but we have an article on using tribe_get_events() here that might be helpful → https://theeventscalendar.com/knowledgebase/using-tribe_get_events/
Thanks for reaching out. The features you are trying to implement are possible, but would unfortunately require many code customizations to implement 🙁
If you are interesting in hiring a professional developer to write the custom code for you, we have a list of great developers here → http://m.tri.be/18k1 (and have no affiliation with any of these folks–they’re simple some well-respected names in the community that we’ve compiled to share in situations like this one).
Thank you!
GeorgeGeorge
ParticipantHey Omid,
I’m sorry, but at this time this is not possible 🙁
Sincerely,
GeorgeGeorge
ParticipantHey @clarity,
If you are trying to redirect to the same URL, http://avindustrycalendar.com/login-register/, then you should be able to have the same redirection happening by using the callback function for just another action; an action on the List View page.
So, adding this line of code to your theme’s functions.php file should do the trick:
add_action( 'tribe_ce_before_event_list_top_buttons', 'redirect_to_better_login_page' );Cheers,
GeorgeGeorge
ParticipantHey Edwin,
Sorry to hear about these issues. I took a look and am suspicious of a theme conflict here.
If you activate a default theme like Twenty Twelve on your site, how do things behave?
Thanks!
GeorgeFebruary 26, 2016 at 12:26 pm in reply to: Recurring event – multiple times on same date problem #1082698George
ParticipantHey Didar,
You unfortunately cannot have a recurring event that repeats multiple times in one day. 🙁
Furthermore, your screenshot shows that your event’s Start Time is 2016-03-17 at 19:30, and its End Time is 2016-03-17 at 19:30. This is the same exact time and date; so the event has a duration of 0 seconds, which is not valid and will not work. The Start Time and End Times have to be different.
Sorry to disappoint here!
— George
George
ParticipantSorry to hear about these issues, @Jacey!
Can you share a link to your site’s event page so I can take a closer look here? Also, if possible share your “System Information.” Here’s how to do that → https://theeventscalendar.com/knowledgebase/sharing-sys-info/
Thank you!
GeorgeGeorge
ParticipantHey Sara,
Sorry for the trouble here. In that thread, I posted a question for you there, can you access the thread and submit a reply there?
This thread, I mean: https://theeventscalendar.com/support/forums/topic/free-or-pro/
Thanks,
GeorgeGeorge
ParticipantHey @Edwin,
Thanks for reaching out. You can find a detailed breakdown of the various stylesheet paths you can use here → https://theeventscalendar.com/knowledgebase/themers-guide/
I hope this helps!
– George
George
ParticipantHey Michael,
Our plugins do NOT fully integrate with WPML. I am sorry about this 🙁
You say this in your first post:
in your faq, you recommend WPML.
What is the name of the plugin?
1. Can you link to the FAQ you are talking about?
2. Can you clarify what you mean when you ask for “the name of the plugin”?
Thank you! 🙂
GeorgeGeorge
ParticipantHey @Vivianne,
Thanks for reaching out! Venue meta information exists only in the post meta for Venues post types specifically. The meta key for Venue City is simply _VenueCity.
I hope that helps!
– George
George
ParticipantThank you for this information, @James!
I’ve tried recreating problems on my own testing site but the importing features all work fine for me—I cannot recreate your issues.
Next, your plugins seem up to date so there is not a version conflict issue here.
So unfortunately, this means that the next best step I could recommend would be to test for plugin/theme conflicts. You can see the troubleshooting process for that here → https://theeventscalendar.com/knowledgebase/testing-for-conflicts/
If you can do these steps, I would recommend doing a test import after EACH step in the process. When you do this, what do you find? Do things start to work anywhere along the way? This testing may sound tedious, but it fortunately does move along a lot more quickly than it might seem.
Thank you,
GeorgeFebruary 26, 2016 at 9:50 am in reply to: Recurring Event "(See All)" pagination (page 1 -> page 2) off by one error #1082547George
ParticipantThank you for your patience—stay tuned!
February 26, 2016 at 9:49 am in reply to: Cross browser editing issues + venue information display issues with spacing. #1082546George
ParticipantThank you for this information, @millspublishing, and for clarifying where your date field issues exist. I’ve tried recreating problems with the date field on my own testing site, and I do not have issues regardless of the browser I try—Firefox, Safari, or Chrome.
Unfortunately, this means that the next best step I could recommend would be to test for plugin/theme conflicts. I say “unfortunately” because that process requires deactivating plugins and such—it’s a much faster process to do than it might seem, but still not something folks are exactly “excited” about doing….
You can see the troubleshooting process for that here → https://theeventscalendar.com/knowledgebase/testing-for-conflicts/
Are these steps that you’re interested in doing? If so, and you do them, check on the date field issue in Safari after EACH step in the process, and let us know what you find.
Thank you,
GeorgeFebruary 26, 2016 at 9:37 am in reply to: Recurring Event "(See All)" pagination (page 1 -> page 2) off by one error #1082525George
ParticipantThank you for sharing this, @Integrity. I’m sorry to say that I have not yet pinned down the problem, but just wanted to update you here that we are still investigating this.
Thank you for your patience! I will post an update as soon as possible if I find the issue.
Sincerely,
George -
AuthorPosts
