Forum Replies Created
-
AuthorPosts
-
Nico
MemberHey, glad to hear this is working now Gwyneth.
Is the least I can do! Thanks for understanding š
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 of luck with your project,
NicoNico
MemberHi Pat,
Thanks for reaching out! Interesting question here.
Right now there’s no easy way of doing this, and crafting a customization for this would be out of the scope of support we can provide here. That being said I can point you in the right direction to get started on crafting a solution for this, but you’ll need to code a bit for your self. Below you can find a snippet including a basic query sample:
// get events additional fields
$fields = tribe_get_option( 'custom-fields', false );
//build the meta query
$meta_query = array( 'relation' => 'OR');
foreach ($fields as $field ) {
// compare to search query = $query->query_vars['s'] or other value
$meta_query[] = array('key' => $field['name'],'value' => $query->query_vars['s'],'compare' => 'LIKE');
}
// create args
$args = array ( 'post_type' => 'tribe_events', 'meta_query' => $meta_query );
// get posts
$search_query = new WP_Query( $args );
Please let me know if you think you can manage from here, and sorry for not having an easy fix for for this,
Best,
NicoNico
MemberHi Heather,
Thanks for reaching out on this! I’ll help you out on this.
Can you check that the field is indeed a URL field in ‘WP-Admin > Events > Settings > Additional Fields’? If this is correct and you are just imputing the URL in the field it should auto-generate the link. I’ve just run a quick local test and this should be working fine with the latest version of the plugin – 3.12. Are you running this version?
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 this,
Best,
NicoNico
MemberGlad to hear Karen, and sorry for the confusion on this. I agree that there should be a notice on this, but not sure how to detect this, maybe when you create more than X events? Or maybe when the event end date matches the recurrence end date?
I cannot think of a use for option #2 as is now, but I can imagine some very similar scenarios with mutiday recurrent events.
Anyway I’m happy this is clarified and also that this in not a bug.
Please let me know if you can think of an effective way of communicating this to the user,
Best,
NicoSeptember 16, 2015 at 9:02 am in reply to: 3.12 – Don't understand/can't close notification #1005624Nico
MemberGlad to hear Lisa š
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
MemberHi B. and unitbit,
Thanks both for following up on this!
unibit: I’ll continue debugging this with B, you are welcome to follow along. If you would like you can also open up a new thread and someone in our support team will be glad to help and follow-up on your situation.
I went through the process of setting this up myself to try to identify what you where missing B.
But there are discrepancies on the āCreating Translationsā¦ā article with what I see in WPML. I do not (and have never) seen the option to Copy/Overwrite from English in the Language pane. I have only the checkboxes to duplicate media items to the translation.
After you configured the languages -English and EspaƱol in this case- just go to WP-Admin > Events > Add New Event, there you should see the Language panel above the Publish one – https://cloudup.com/iaFQJli68A6. If you don’t see it there, open ‘Screen Options’ menu and make sure the panel is enabled.
Once you see it there, just click the blue + sign next to Spanish in the ‘Language Panel’. This will open another ‘Edit Event Screen’ for the Spanish translation of the event. Now in the ‘Language Panel’ click ‘Override with English content’ – https://cloudup.com/iRXnSd_Nz2H.
After adding a title and description in Spanish save the event. Now go to the front-end of the site and check if both events show in the calendar when you switch languages.
Please let me know if you can create and see the events in the calendar of each languages. If you are able to do so we can continue and investigate the URL configuration.
Best,
NicoNico
MemberHi Karen,
Thanks for holding on this!
I finally give this some testing time, but I’m not 100% sure about how you are setting the event up.
I mean if you need the event to run everyday from Sept 10 to Nov 10, you should set up the event to run from Sept 10 to Sept 10 and create a recurrence rule for it to run ‘Every Day’ and set Nov 10 as the end date of the recurrence. If instead of doing so you set the event to run from Sept 10 to Nov 10 and set a recurrence rule for it to run ‘Every Day’ till Nov 10, it will try to create one new event (with two month duration) per day till the end date. Do you see the difference? Do you think this is what was happening?
Please let me know about this,
Best,
NicoNico
MemberHey Gwyneth,
Thanks for following up on this in such a detailed way š
Reviewing our previous messages I made a mistake on the folder structure provided. I’m sorry for that, my bad.
Can you ask your dev to rename the ‘tribe’ folder inside your theme folder to ‘tribe-events’ and check if this solves the issue?
Please let me know if it does,
Best,
NicoNico
MemberHi Allison,
Thanks for following up on this. Unfortunately we are not allowed to log in into client sites. Also I guess the text you want to change is not from our plugin but from WooCommerce, right?
Anyway, please send over a screenshot and I’ll try to figure out what the CSS should be to change this.
Thanks,
NicoSeptember 16, 2015 at 5:24 am in reply to: Site experiencing timeouts / database deadlocks from recurring events #1005543Nico
MemberHi @cacpro,
Thanks for getting back to me on this. Hope we can make it right soon!
Can you identify the event that might be breaking this up? Hopefully it’s just one event with a ‘long’ recurring series. In the error description you sent over it reads ‘_transient_tribe_events_pro_processing_batch_2712’, this indicates it’s the batch for event with ID = 2712. If you can find this event try to delete it and create a smaller recurrence series. Maybe you can divide the series in two different events.
You can also try to lower the value of ‘Create recurring events in advance for’ in WP-Admin > Events > Settings > General, it might help to prevent this error in the future.
Please let me know how this goes,
Best,
NicoNico
MemberHey Thomas,
Thanks for following up on this!
I see the point in using a placeholder for this, but unfortunately that’s not possible right now š If Vamtam elements are usable via shortcodes yo can use the WordPress ‘do_shortcode‘ in the modified templates.
On the login form, the work around is to wrap all the template code in your own logged in check and if the user is not logged in then show your own form -maybe a redirect works here too. It’s not recommended at all to edit the file directly in the plugin folder, but create a template override in your theme folder, as described in our Themer’s guide. Be sure to go over it before you start working on this customization.
Please let me know if there’s anything else I can help you with,
Best,
NicoSeptember 16, 2015 at 4:30 am in reply to: 3.12 – Don't understand/can't close notification #1005532Nico
MemberHey Lisa,
Here’s the snippet, add it to your theme functions.php file or if you prefer you can add it to the plugin you mention:
// remove slug conflict admin notice
if (class_exists('Tribe__Events__Admin__Notice__Archive_Slug_Conflict')) {
remove_action( 'admin_init', array( Tribe__Events__Admin__Notice__Archive_Slug_Conflict::instance(), 'maybe_add_admin_notice' ) );
}
Please let me know if this works for you,
Best,
NicoSeptember 16, 2015 at 4:03 am in reply to: Some cunfusing bugs after update (next page, category, ect. don't work) #1005530Nico
MemberHey Wini,
Thanks for following up on this, and also for holding on until the maintenance release is out.
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
MemberHi Peter,
Thanks for reaching out to us! Let me say that the calendar on your site looks great to me š
I see the template you use is heavily styling the calendar – that’s why it looks different. The demo site uses just the plugin styles. You can try switching the calendar look settings at WP-Admin > Events > Settings > Display, options Default stylesheet used for events templates and Events template. If this doesn’t work you can try and reach out to the plugin author to ask about this.
Please let me know if you figure it out,
Best,
NicoSeptember 15, 2015 at 3:32 pm in reply to: Some cunfusing bugs after update (next page, category, ect. don't work) #1005434Nico
MemberHI there Wini,
Thanks for reaching out and sorry to hear about the issues you are experiencing š
This same issue was reported by another user and seems to be a slug translation bug. It’s already logged into our product backlog and a fix for this is on the way. It will part of the maintenance release coming out shortly – hopefully next week.
Do you think you can hold on for that? I’m afraid the only option till the fix is out is to downgrade to the previous version of the plugin, where this working as expected. If you consider this option best for now please follow the steps outlined in this article: Downgrading a plugin to a past version.
Please let me know if there’s anything else I can help you with here,
Best,
Nico -
AuthorPosts
