Forum Replies Created
-
AuthorPosts
-
Crisoforo
KeymasterHi Claude!
Thanks for taking your time to report this, at the moment the developer team is working in a solution for this, in the meantime we are suggesting to our users a manual update on the plugin to avoid this problem, we have a detailed guide in how to update the plugins manually.
I’m really sorry for this inconvenience. And I will loop back as soon as we have an update with the fix for this problem.
Let me know if you have any particular questions about this.
Best
CrisoforoDecember 27, 2017 at 3:59 pm in reply to: Edit tribe_the_notices "This event has passed" Text #1413609Crisoforo
KeymasterHey!
Thanks for reaching out, you can customize the value of the notice adding a new filter into your functions.php file. As follows:
function tribe_events_set_notice_past_events( $notice, $key ) {
if ( 'event-past' === $key ) {
$notice = 'This is my custom message for this one';
}
return $notice;
}add_filter( 'tribe_events_set_notice', 'tribe_events_set_notice_past_events', 10, 2 );
However I’m not really sure on what language you are trying to show this message as it might be due we still have some outstanding areas of the translations in different langugaes as you can see on this article.
Please let me know if you have any additional questions about this.
Best.
CrisoforoCrisoforo
KeymasterHey there!
I hope you are doing great. and I will help you to answer your question.
As long as your developer setup a local site with any of the following extensions in his computer should be good to go.
- *.dev
- *.local
- *.test
- *.tribe
- *.staging
- localhost
Where * can be something like demo, to make demo.local, you can find more details about this in the article in the knowledge base.
Let me know if you have any other questions about this.
Thanks,
CrisoforoDecember 27, 2017 at 9:34 am in reply to: please help to solve translate problem from EN to DE #1413394Crisoforo
KeymasterHi Thomas!
Thanks for taking your time to report this.
I’m really sorry for this inconvenience and however we still have some outstanding areas to be translated as you can see on this article it also gives you an idea it how to solve this problem. However I’m seeing based on your screenshoots it seems to be WooCommerce templates the ones missing translations, so please take a look at this article as well, in order to make sure you should test for any conflicts with other plugin.
Please let us know how that goes and if is there anything else we can do for you.
Best
CrisoforoCrisoforo
KeymasterHey!
Thanks for reach out, would you mind confirm this is no longer an issue on your end?
Thanks
Crisoforo
KeymasterThis reply is private.
December 27, 2017 at 9:24 am in reply to: please help to solve translate problem from EN to DE #1413388Crisoforo
KeymasterThis reply is private.
Crisoforo
KeymasterClosing this one as we have another ticket opened as duplicate of this one we can follow up from there:
December 27, 2017 at 9:20 am in reply to: please help to solve translate problem from EN to DE #1413381Crisoforo
KeymasterHey!
I’m going to close this one so we can follow up from the original thred:
December 27, 2017 at 9:19 am in reply to: please help to solve translate problem from EN to DE #1413379Crisoforo
KeymasterClosing this one as is a duplicate from https://theeventscalendar.com/support/forums/topic/please-help-to-solve-translate-problem-from-en-to-de-3/
Crisoforo
KeymasterAwesome. I’m going to close the ticket and feel free to reach again if you have more questions.
Crisoforo
KeymasterHey Drew,
Thank you for reaching out to us!
If you can let us know what specifc type of widget is I can give you a better answers, in the meantime I will provide you with some useful links and how to remove the class tribe-event-featured class.
- In order to change or style any widget we have a useful guide, thank you can follow along as it provide steps in how to change styles on widgets.
- You can use the following snippet of code to remove the class tribe-event-featured, make sure to place this code on your functions.php file on your active theme.
// File: functions.php
function tribe_events_event_classes_remove_featured( $classes ) {
$key = array_search( 'tribe-event-featured', $classes );
if ( false !== $key ) {
unset( $classes[ $key ] );
}
return $classes;
}add_filter( 'tribe_events_event_classes', 'tribe_events_event_classes_remove_featured' );
Let me know if you have any other questions or if you want to provide me more details on the theme you want to update I can provide you more details steps.
Thanks and happy holidays,
CrisoforoCrisoforo
KeymasterHey.
Welcome to the forums and I will answer your questions.
Can the Map view be set up as the default view?
Yes this can be set as default view on the PRO version.
Can visitors view past events on the map view as well?
Yes past events are available on the map, they just need to navigate on “previous events” similar as “previous page” works on default WordPress articles, and those past events are going to be visible on the map.
Let me know if you have any other questions about the plugin.
Best
CrisoforoDecember 26, 2017 at 8:51 am in reply to: Better HTML structure in date and time meta output #1412860Crisoforo
KeymasterHey!
That’s awesome. In order to avoid a problem if someone changes the default option you can make use of the update version to rely on the value on the admin settings of each separator.
function tribe_change_event_schedule_markup( $markup ) {
// make sure your date separator has one space before and after on the settings
// first place is the part to change, second part is the new markup and last one is where should search.
$datetime_separator = tribe_get_option( 'dateTimeSeparator', ' @ ' );
$markup = str_replace( $datetime_separator, ' | ', $markup );
// make sure your time separator has one space before and after on the settings
// first place is the part to change, second part is the new markup and last one is where should search.
$time_range_separator = tribe_get_option( 'timeRangeSeparator', ' - ' );
$markup = str_replace( $time_range_separator, ' - ', $markup );
return $markup;
}
add_filter( 'tribe_events_event_schedule_details_inner', 'tribe_change_event_schedule_markup' );
And if you want to remove those options from the admin options as well is possible with the following snippet of code.
function tribe_display_settings_tab_fields_remove_separators( $fields ) {
// Removes date time separator from the fields
if ( isset( $fields['dateTimeSeparator'] ) ) {
unset( $fields['dateTimeSeparator'] );
}
// Removes time range separator from the fields
if ( isset( $fields['timeRangeSeparator'] ) ) {
unset( $fields['timeRangeSeparator'] );
}
return $fields;
}
add_filter( 'tribe_display_settings_tab_fields', 'tribe_display_settings_tab_fields_remove_separators' );
Please let me know if you have any questions about this. And hopefully this clarify this a little more.
Have a good day and happy holidays.
December 22, 2017 at 5:20 pm in reply to: Uncheck google maps by default (venue details) – Community Events #1412054Crisoforo
KeymasterAwesome!
I’m glad I was able to give you some help on this one.
-
AuthorPosts
