Forum Replies Created
-
AuthorPosts
-
Brian
MemberHi
I can answer your question. I am not sure exactly what you are asking so I am providing information that I think may answer it in one form.
when a new user creates an event then the organiser is autopulled through with their details. Is there a simple way that I could do this?
Are you saying that when a user adds a new organizer that you would like to create an organizer custom post type with that information? That is already the default behavior.
Fill in User Info
Or are you saying you would like to pull in information from the user to fill in as the organizer? I am afraid that is not possible with our current features, but you could customize the template and have it fill in those fields yourself. We can provide some tips on that customization, but for the most part it is beyond the support we can give on the forum. If you think that is something you would like as a feature I encourage you to visit our User Voice Page and either upvote an existing request or make a new request there.Defaults
We also have a default option for the Community Calendar Events on the Community Tab of the Events Settings:“Default organizer for submitted events”
That is the same for all the Community Events Submitted.
Let me know if that answered your question or you would like some more help.
Thanks
Brian
MemberGlad you figured it out nicekicks.
werbeagenturlauf
That function is located in this file:
pro/photo/single-event.php
I would recommend follow the Themer’s Guide to move it to the correct spot into your theme and modify it there.
https://theeventscalendar.com/support/documentation/events-calendar-themers-guide/
Since there is nothing more we can do here I am going to close this ticket, but if you would like some more help feel free to create a new one.
Thanks
Brian
MemberSorry to hear that. Please email us at pro(at)tri.be with the receipt number and we can help you there.
Thanks
Brian
MemberJT and gabrielet
Sorry for the troubles you are having. I can help troubleshoot this with you. I have some tests for you to try and then can you please post the results back in a new ticket as we are able better help both of you in your own tickets and that way we will not ping hughconstructs every time we post here 🙂
JT
Thanks for providing the link I looked at your site and found this error in the maps source code:“An error occurred while updating”
It appears that can happen when an update does not go through correctly or the files do not have the correct permissions on the server.
Can you please try these steps after backing up your site:
- Deactivate all the Events Calendar Plugins
- Delete all the Events Calendar Plugins
- Reload the latest version of each plugin and reactive
- Check your site for any changes.
If that does not work can you please follow our testing for conflicts guide and see if that narrows down the issue:
https://theeventscalendar.com/support/documentation/testing-for-conflicts/
Let me know what you find out in a new ticket please and if you have any customizations for the Events Calendar in your theme.
gabrielet
Can you please also try out testing for conflict guide and then report your results in a new ticket as well as include a link to a site if you have one for us to take a look.https://theeventscalendar.com/support/documentation/testing-for-conflicts/
Let me know what you find out in a new ticket please and if you have any customizations for the Events Calendar in your theme.
Thanks
Brian
MemberOk since the issue is resolved as far as we can get right now and this ticket has been added to our bug report I am going to close it as there is nothing more we can do on it.
We will notify you through this topic when we have an update on the bug ticket in our system.
Thanks
Brian
Membermpurse we are having a bug with older sites using an old option causing there to be no height.
Please try adding this filter to the functions.php to see if that resolves the issue.
add_filter( 'tribe_get_option', 'adjust_tribe_embedded_map_height', 10, 2 );
function adjust_tribe_embedded_map_height( $value, $property ) {
if ( 'embedGoogleMapsHeight' !== $property ) return $value;
return '350px';
}Also, can you please post a new ticket if this filter does not help you as we can provide better support when you have your own ticket, thanks!
Brian
MemberSince the questions are answered I am going to close this ticket, but if you have any questions related to this or something new, please create a new ticket for us to help you out 🙂
Brian
MemberSince the questions are answered I am going to close this ticket, but if you have any questions related to this or something new, please create a new ticket for us to help you out 🙂
October 6, 2014 at 6:38 am in reply to: List and Map view – Page Title problems with 3.8 release #791215Brian
MemberI fixed it, there was a missing { after the new is list or is month check.
I have created a ticket to address this issue in a future release and make it less confusing when searching by a date.
As for the filter, the function is working now and this is about all we can provide for support on this customization in the forum. So I will leave you to modifying the function if you would like it to do more for you.
Thanks
October 6, 2014 at 6:34 am in reply to: Filter Bar does not appear to be collapsing even when set to intially be #791208Brian
MemberI am sorry I tried that coding, but it does not come across well in the forum so it is full of errors.
This first part here:
“<?php echo from echo $day to”
Has a open php tag and “from” and “to” are not a php function so that broke it for me.
Please post the coding in pastebin or as a gist which formats the coding correctly and then I can take a look.
However, this is a customization and not much more support we can provide on this in the forum, but I will take one more look if you like.
Thanks
October 3, 2014 at 2:41 pm in reply to: List and Map view – Page Title problems with 3.8 release #785947Brian
MemberI updated the Gist as well with that coding, but I have not tested if that would indeed work.
October 3, 2014 at 2:36 pm in reply to: Filter Bar does not appear to be collapsing even when set to intially be #785942Brian
MemberGlad one thing is fixed!
Could you post the code into a pastebin for the loop-grid.php and reply with the link here and I will see if it works for me.
Thanks
October 3, 2014 at 2:33 pm in reply to: List and Map view – Page Title problems with 3.8 release #785938Brian
MemberYou could try adding these two conditionals to the filter:
tribe_is_map()
and
tribe_is_list_view()
That should make it only work on the list view and the map view.
Let me know if that works.
Thanks
Brian
MemberHi sorry for the issues, I know customizations can get tricky.
I cannot accept offer to customize the Events Calender. We do have a list of developers we can give you if you would like to go that route. If you email us at pro(at)tri.be we can provide some names off that list.
Thanks
October 3, 2014 at 12:25 pm in reply to: List and Map view – Page Title problems with 3.8 release #785713Brian
MemberHello,
I took a look at what you mean and I could see that is confusing I will have to bring this up with the team to see how we can make that better.
In the mean time I came up with this filter to change the title to Upcoming Events on the first page or future events. Then on the past events it filters to say Past Events.
https://gist.github.com/jesseeproductions/91751356639fe24bfd08
Also, for single event pages, the page title is now “Upcoming Events [Event Title]“. Is that supposed to be the format? “Upcoming Events” doesn’t seem to make sense there (although including the event city and state might for SEO purposes), but that might just be me 🙂
Yep that is the format.
Let me know if that filter works for you.
Thanks
-
AuthorPosts
