Forum Replies Created
-
AuthorPosts
-
Nico
MemberGlad to be of service David!
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,
NicoJanuary 27, 2016 at 1:52 pm in reply to: Problem with preserving links to original translation while translate event #1063409Nico
MemberHi Andy,
Thanks for your patience while I worked to test this!
I’ve tested this in my local install with the setup up described in the article Setting up The Events Calendar with WPML. When creating the translations as suggested I’m not able to reproduce the error you mention.
Are you using the ‘Overwrite with English(main language) content’ option? Can you try again with a new event while the site is in default conditions (default theme and no other plugins active? Be sure to follow the steps in the guide when doing so.
Regarding the URL, you can configure how that works for every language. Go to WP-Admin > WPML > Languages > Language URL format, there you’ll find the options to change this.
Please give that a second try and let me know about it,
Best,
NicoJanuary 27, 2016 at 12:54 pm in reply to: Considering purchase – venue / organizer and import support #1063391Nico
MemberHi Michael,
Thanks for reaching out and also for you interest in our products! I’ll help you decide if they are the right choice for your project…
First, is it possible to auto populate organizer/venue from a given google calendar import feed?
Per default the importer will try to pull organizer/venue information from the feed automatically. If there’s no matching organizer/venue it will create a new one. In the case of the venue it won’t populate all the fields (as they are not labeled in the iCal format), it will just save all the info in the title field. You can edit it later. Please read more about the add-on that enables that functionality: iCal Importer.
does the plugin (please tell me which version if so) support the automatic export/syncing to a google calendar,
The above mentioned plugin can be configured to import events from a feed every 30 mins, every hour, every day, etc. To get a feed of the events in your site, you can use the following URL: http://yoursite.com/events/?ical=1 that will return a feed of the upcoming events. No special add-on needed for the feed feature.
hope you find this information useful, and please let me know if you still have any questions on this,
Best,
NicoNico
MemberJames,
Glad you find that approach useful!
…also set the event as a draft again after it has been edited so an admin has to approve it. Do you have any idea how this could be achieved?
Sure! You’ll need to add the following snippet to your theme (or child theme) functions.php file:
/*
* The Events Calendar - Allways set to draft CE form sumissions
*/
add_action( 'tribe_community_event_updated', 'ce_set_draft' );
add_action( 'tribe_community_event_created', 'ce_set_draft' );function ce_set_draft ( $event_id ) {
$current_post = get_post( $event_id, 'ARRAY_A' );
$current_post['post_status'] = 'draft';
wp_update_post($current_post);
}
Please let me know if that works for you,
Best,
NicoJanuary 27, 2016 at 12:25 pm in reply to: Event submission notification email: wrong content #1063372Nico
MemberThanks for confirming it Rafael!
Nico
MemberHey Pat,
Thanks for getting in touch! I’ll help you fixing this…
From what I see in the source code the items you mention are not marked up as an unordered list. But the two items above those are, and indeed are not showing bullets.
It seems that there’s a CSS rule in your theme to prevent this, which you can override with the following code:
.tribe-events-content li {
list-style-type: disc;
}
You can add that snippet via Simple Custom CSS plugin or directly to your theme (or child theme) stylesheet.
Please give a try and let me know about it,
Best,
NicoNico
MemberHey Chris,
Thanks for reaching out and for you interest in our products 🙂
While we don’t have any specific discounts for academic organizations, we do have a non-profit program in which your association might fit. If that’s not the case you can stay tuned to our social networks or subscribe to our newsletter (in the site footer) where we occasionally send out discount codes – I guess this is not an option if you are looking forward to get a license today!
Please give the article a read and let me know if there’s anything else I can help you with,
Best,
NicoNico
MemberHi Eric,
Thanks for reaching out to us! I’ll help you settings this up 🙂
I guess the simpler way is to edit the venue form template and mark those inputs as checked per default. As they are not being displayed to the user they won’t be able to uncheck those. Before I describe the process please be sure to check our Themer’s guide to get an idea of how template overrides work.
You’ll need to override the venue.php template located at wp-content/plugins/the-events-calendar-community-events/src/Tribe/views/community/modules/. Once you have the copy of the file placed correctly in your theme (or child theme) folder, you’ll need to do the following edits:
// change line 185
<input type="checkbox" id="EventShowMapLink" name="EventShowMapLink" value="1" <?php checked( $venue_show_map_link ); ?> />
// whith this
<input type="checkbox" id="EventShowMapLink" name="EventShowMapLink" value="1" checked />// change line 200
<input type="checkbox" id="EventShowMap" name="EventShowMap" value="1" <?php checked( $venue_show_map ); ?> />
// whith this
<input type="checkbox" id="EventShowMap" name="EventShowMap" value="1" checked />
This should do the trick! If you prefer not to edit the template we can do this in other ways, via JS or hooking up to some actions that happened after the event is submitted/edited.
Please let me know about it,
Best,
NicoNico
MemberHi Delbert,
Thanks for reaching out to us, and sorry to hear about this issue… I’ll try to help you dealing with it!
Recurring events have a ‘limit’ to be created in advance and to be clean up. You can set that up in WP-Admin > Events > Settings > General > Clean up recurring events after / Create recurring events in advance for, the default value is 36 months, which for this case might not be enough to limit the recurrence. You can lower that to 12 months and then the recurring events amount should lower (a cron runs to clean up / create recurring events, so it might take some time to adjust this).
What I suggest you do is back up the site db and files before proceeding with the cleanup, just to be sure your data is safe and you can restore it if something goes wrong. Ideally you could create a dev site (maybe a local copy) with the current state of the online site, and make the clean up in a safe environment. Having a staging/dev site for testing updates and making these type of changes is always recommended. For the clean up itself I recommend you try to set the recurrence rule to ‘Once’ and save the event.
Please let me know if this advice helps you out,
Best,
NicoNico
MemberHola Antonio, como estás?
Gracias por ponerte en contacto con nosotros una vez mas 🙂 Espero podamos solucionar este problema rápidamente!
Ya he comprobado que tengo activados los comentarios.
Los comentarios para events se activan desde WP-Admin > Eventos > Ajustes > General > Mostrar comentarios.
He hecho la prueba en mi instalacion local y en efecto con esta opcion activada se muestran tanto el forumlario para comentarios como los comentarios ya realizados. Podrias checkear que los comentarios a mostrar esten aprobados? Puede ver eso en WP-Admin > Comentarios.
Por lo que entiendo has revisado esto con el tema Tweenty Twelve, has desactivado tambien los otros plugins que corren en tu sitio al hacerlo?
Espero tus comentarios! Saludos,
NicoNico
MemberHola Maria,
Thanks for jumping in!
how can i set the order with an index? maybe thats not posible…
Sure it’s possible just use the code I’ve sent to David in my previous reply, but instead of using the sort function, use the ksort to order by array key, which in this case is the same as the tag id.
Please give a try and let me know if it works as expected,
Best,
NicoNico
MemberHey Andreas,
Glad you could sort this out! I’ve checked on my phone and it’s now working as expected 🙂
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,
NicoNico
MemberHey James,
Thanks for your patience while I looked into this!
I figured out the best way to do this would be to create a template override for the edit-event.php template (located at wp-content/plugins/the-events-calendar-community-events/src/Tribe/views/) and add the following function to use in conditionals later on the template:
...
function is_edit_page ( ) {
global $post;
return is_a ($post, 'WP_POST');
}if ( ! defined( 'ABSPATH' ) ) {
die( '-1' );
}
...
So for example let’s say you want to hide the date ‘part’ of the form if the user is editing, then you can do the following:
...
<?php if ( !is_edit_page() ) : ?>
<?php tribe_get_template_part( 'community/modules/datepickers' ); ?>
<?php endif; ?>
...
Please let me know if this makes sense to you and if you can make it work,
Best,
NicoNico
MemberHi James,
Thanks for reaching out to us, and sorry for my delayed reply. I’m looking into the issue and trying to find the simplest approach to solve this, but it’s getting a little tricky!
Just wanted to give you a quick heads up on this. I’ll be updating the thread soon!
Best,
NicoNico
MemberHey Dev,
Thanks for reaching out to us and for your interest in our products 🙂
Currently we do not have any specific discounts for academic institutions, but we do have a non-profits partnership program that might be a fit for your case.
Please let me know about it,
Best,
Nico -
AuthorPosts
