Forum Replies Created
-
AuthorPosts
-
Nico
MemberHi there Clint,
Thanks for getting in touch with us and sorry to hear about this issue 🙁
From what I can see in your site, single event pages are also borked. Unfortunately I’m not sure what might be causing this glitch, and some troubleshooting will be required to get more information about this.
Can you please follow the steps described in our Testing for conflicts guide? This way we can see if this is a problem in our plugin or a conflict with the theme or other installed plugins.
Please let me know about it,
Best,
NicoNico
MemberThis reply is private.
Nico
MemberHi there Derek,
Thanks for getting in touch with us! Interesting idea 🙂 with some more information we can turn this into a feature request.
Just to confirm, you are referring to the ability of importing tickets create for events in MeetUp.com and linking them from the calendar website? If this is the case can you describe a bit more what you would expect of this functionality? Just a button indicating there are tickets available for purchase in MeetUp.com or would you like to see a deeper integration?
Please let me know about it,
Best,
NicoNico
MemberHola @mastres, como estas?
Gracias por ponerte en contacto con nosotros nuevamente. Lamento oír sobre este conflicto nuevamente 🙁
Como te comentaba en el intercambio anterior, es posible que el error se deba a que Community Events no es compatible con WPML. Si bien hay un feature request creado para esta integración, no algo es algo en lo que nuestros desarrolladores esten trabajando actualmente.
Para comprobar el correcto funcionamiento de Community Events, lo mejor seria deshabilitar WPML y otros plugins (y también el tema) para ver si el plugin funciona correctamente sobre el sitio en condiciones por defecto. Una vez comprobado esto, la idea es activar el theme y los demás plugins de a uno para ver cual es el que esta generando el conflicto.
Si tenes un sitio de desarrollo donde puedas realizar estas pruebas seria lo mejor.
Espero tu respuesta,
Saludos,
NicoNico
MemberHey Thomas,
Thanks for confirming this is solved for you! As you say this was fixed in 4.3.4.2 hotfix, there’s not much to add but you can find release notes for this hotfix here.
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,
NicoDecember 19, 2016 at 12:06 pm in reply to: show all events locations on map at events listing page #1207866Nico
MemberHi Aaron,
Thanks for reaching out to us on this!
Let me say I’m not quite sure about your request here. The map in ‘map view’ will show the location for the upcoming events listed below the map.
In the past I created a shortcode for a customer to show all venues in a map. Maybe this works for you as well? Check this out → Venue map shortcode.
Please let me know about it,
Best,
NicoNico
MemberHi there Mark,
Thanks for getting in touch with us!
Unfortunately there’s no setting to change the order of the events in the list under the calendar 🙁
Is there a way to manually ‘shuffle’ these events a bit
There are many plugins that enable you to do a custom order of post (events in this case) like Simple Custom Post Order. But I guess plugins like this will try to override the events order across the site and you won’t have control over where this is changed. Do you think this might work for you?
Please let me know about it,
Best,
NicoDecember 19, 2016 at 10:46 am in reply to: sort events by ending date (closest to furthest) #1207798Nico
MemberThanks for following up Colin!
I’m mostly sure that’s the way it’s working on my end (ordering by upcoming event end date, dic 15 – 16 – 17, etc). Also Hunter (who was originally helping you here) gave the script a try and it seems to be working on his end.
Can you try switching to a default theme + disable all plugin (not ours of course) and add the script to the default theme’s functions.php file?
If you have a staging site were you can set this up I’d be glad to take a look also.
Please let me know about it,
Best,
NicoNico
MemberHi there Tom,
Thanks for the patience while I worked on this!
My #1 priority would be the post status and I would be happy if the action of the existing submit button set the status of the post to publish when the user role has publish rights and draft for users with no publish rights when a new post is submitted. Maybe I should add this as an enhancement request?
Place the code below inside your theme’s (or child theme’s) functions.php file and it should do the trick. As a sample I’m checking for the capability to ‘edit_other_posts’, and setting the event to draft if the current user doesn’t have that perm. This is a starting point for you to tweak this to your project needs.
/**
* Tribe, set community event status according to current user capabilities
* User roles > https://codex.wordpress.org/Roles_and_Capabilities
* Post Satus > https://codex.wordpress.org/Post_Status
*/
function tribe_set_ce_status ( $event_id ) {// check for the desired capability
if ( current_user_can('edit_others_posts', $event_id) ) {
wp_update_post(array( 'ID' => $event_id, 'post_status' => 'publish'));
} else {
wp_update_post(array( 'ID' => $event_id, 'post_status' => 'draft'));
}}
add_action( 'tribe_community_event_updated', 'tribe_set_ce_status' );
add_action( 'tribe_community_event_created', 'tribe_set_ce_status' );
#2, The list of all events in the front end would, as you say, create a mini-admin role, which would be really useful to a lot of us folks managing calendars for a wide range of contributors where we want some help managing the posts but don’t want to open up the backend to someone else.
Taking a second look into this, it’s not necessary to override the ‘community events list’ template. You can add this snippet to the theme’s (or child theme’s) functions.php file to make it work:
/**
* Tribe, filter community events my events query
* User roles > https://codex.wordpress.org/Roles_and_Capabilities
*/
function tribe_filter_my_events_query ( $args ) {// check for the desired capability
if ( current_user_can('edit_others_posts') ) {
unset( $args['author'] );
}return $args;
}
add_filter( 'tribe_ce_my_events_query', 'tribe_filter_my_events_query' );
Please give these two snippets a try and let me know if they work as intended,
Best,
NicoNico
MemberBuenisimo Antonio! Que bueno escuchar que el sitio de pruebas ya esta dando resultados positivos.
Excelente trabajo debuggeando estos errores! Felicitaciones!
Voy a cerrar este hilo ya que los problemas han sido resueltos.
Muchas gracias, que pases un gran resto del finde vos tambien 😉
Saludos,
NicoDecember 18, 2016 at 7:24 am in reply to: End Dates still not imported from Google Calendar (4.3.4.1) #1207524Nico
MemberHi there,
Just wanted to inform that the fix for this issue has been finally pushed to the Event Aggregator server! There’s no need to update the plugins, although I recommend using the latest version of The Events Calendar.
Thanks so much for the patience while we worked on this 🙂
Please let us know if this is working as expected for you,
Best,
NicoNico
MemberHi there,
Just wanted to inform that the fix for this issue has been finally pushed to the Event Aggregator server! There’s no need to update the plugins, although I recommend using the latest version of The Events Calendar.
Thanks so much for the patience while we worked on this 🙂
Please let us know if this is working as expected for you,
Best,
NicoDecember 18, 2016 at 7:22 am in reply to: Multi-day events from Google Calendar only show as one day #1207521Nico
MemberHi there,
Just wanted to inform that the fix for this issue has been finally pushed to the Event Aggregator server! There’s no need to update the plugins, although I recommend using the latest version of The Events Calendar.
Thanks so much for the patience while we worked on this 🙂
Please let us know if this is working as expected for you,
Best,
NicoNico
MemberHi there,
Just wanted to inform that the fix for this issue has been finally pushed to the Event Aggregator server! There’s no need to update the plugins, although I recommend using the latest version of The Events Calendar.
Thanks so much for the patience while we worked on this 🙂
Please let us know if this is working as expected for you,
Best,
NicoDecember 18, 2016 at 7:20 am in reply to: Icalendar is importing the events and setting the event time incorrectly #1207519Nico
MemberHi there,
Just wanted to inform that the fix for this issue has been finally pushed to the Event Aggregator server! There’s no need to update the plugins, although I recommend using the latest version of The Events Calendar.
Thanks so much for the patience while we worked on this 🙂
Please let us know if this is working as expected for you,
Best,
Nico -
AuthorPosts
