Forum Replies Created
-
AuthorPosts
-
Brian
MemberHi,
I noticed you are using the Post Types Order plugin.
https://wordpress.org/support/plugin/post-types-order
I have that plugin on my test site as it has caused issues before.
Once I activated it, I immediately saw the issue you are having.
That is most likely the cause of this issue as if it messed up my site right away it would be doing the same to yours.
Brian
MemberSorry again to disappoint. I hope one day we can support WPML.
For now I am closing this thread as there is nothing more we can do here.
Brian
MemberYou’re welcome.
I am going to close this ticket, but if you need anything else related to this topic or another please post a new topic on the forum and we can help you out.
Thanks
Brian
MemberHi hill8978,
That private reply does not contain information that would help do that.
If you do not want to ftp a plugin update and automatic updates are not working.
You can deactivate and delete pro and then get the latest version from your account here and upload it and active it all through the admin.
Deactivating the event plugins does not erase settings or change events.
If you have further issues, please create a new thread one on one and we can better help you that way.
Cheers
Brian
MemberOk thanks for the info.
You added this coding correct? That is set to show the hours between 7am to 6pm in each day of week view.
If you want 8am to 8pm then change it to the following:
<?phpadd_filter( 'tribe_events_week_get_hours', 'filter_week_hours' );
function filter_week_hours( $hours ) {
$hour = 0;foreach ( $hours as $key => $formatted_hour ) {
if ( $hour < 8 || $hour > 20 ) {
unset( $hours[ $hour ] );
}$hour ++;
}return $hours;
}
Let me know if that works out.
Category Colors
So we do not have Category Colors features built in, but Andy Fragen has a great plugin called The Events Calendar Category Colors that does it:I would check that out.
Cheers
Brian
MemberGreat glad it helps.
The documentation has been fixed as well, thanks for bring it up.
I am going to close this ticket, but if you need anything else related to this topic or another please post a new topic on the forum and we can help you out.
Thanks
Brian
MemberThanks for that information.
It does not look like they have a way to use custom fields.
You maybe to put the date in the event excerpt field and then pull in both the excerpt and content.
That might get what you are looking for.
Brian
MemberGreat glad it helps.
I am going to close this ticket, but if you need anything else related to this topic or another please post a new topic on the forum and we can help you out.
Thanks
Brian
MemberYour Welcome.
I am going to close this ticket, but if you need anything else related to this topic or another please post a new topic on the forum and we can help you out.
Thanks
Brian
MemberSorry to disappoint, but with the delay in 3.10 we have not gotten to WPML compatibility and do not have any coding to provide and do not have a timeline when it might happen.
Brian
MemberHi,
Thanks for using our plugins.
Looks like a change to the registered name in WordPress is causing this.
Try out this coding instead, it worked for me:
add_action( 'wp_enqueue_scripts', 'remove_filter_bar_styles', 100 );
function remove_filter_bar_styles() {
wp_dequeue_style( 'Tribe__Events__Filterbar__View-css' );
}Let me know if that works for you.
Thanks
Brian
MemberHi Lora,
Thanks for using our plugins.
We do not have a feature to display the timezone for the event.
You maybe to do it through a customization of the theme following our themer’s guide:
https://theeventscalendar.com/knowledgebase/themers-guide/
And then you could put a custom field in the event editor of the admin to enable a timezone to be selected.
Also, If you would like to request that feature please head to our UserVoice Page and add your own or upvote that feature as they will increase the chances of it being added to a future version.
http://tribe.uservoice.com/forums/195723-feature-ideas
Cheers
Brian
MemberHi,
Thanks for using our plugins.
We do not have any features to do as you describe, but it could be possible with a customization.
We are limited in supported customizations, but I can help you get started.
You can setup custom queries of events using tribe_get_events
And then we have this guide to getting single and recurring events:
That would enable you to get the events and you could then style the output the way you would like.
Let me know if you have any follow up questions.
Thanks
Brian
MemberHi,
Sorry for the issues between our plugins and WPML.
For now our plugins do not work well together and we do not have any coding or support to provide to fix them.
Unfortunately, achieving WPML integration is not a simple problem to solve.
In this case it is not absolutely clear that changes are even required or would be best made in our own codebase – which already follows most or all WordPress best practices for internationalization.
It could be that WPML itself needs to change how it works to accommodate a wider range of plugins, like our own, or alternatively it may need to introduce new facilities our plugins can interact with before we can make changes on our end.
Given the number of unknowns we do not have any coding to provide to resolve the issues and although we are looking to make the plugins compatible I do not have a timeline when that might happen.
Let me know if you have any follow up questions.
Thanks
Brian
MemberHi,
Please make sure to answer the following so we can get to the bottom of this:
Are you able to go into any of the ticket products and resave one of them and does that enable it to show then?
Also, do you have any custom coding for the Events Calendar in your theme or any custom templates?
If a ticket has a start sell date of 6/28 and today is 6/24 that ticket would not show on the front end. This date is set per ticket and not the start and end date of the event.
Let me know.
-
AuthorPosts
