Crisoforo

Forum Replies Created

Viewing 15 posts - 106 through 120 (of 144 total)
  • Author
    Posts
  • in reply to: The Event Calendar update fails #1413628
    Crisoforo
    Keymaster

    Hi 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
    Crisoforo

    in reply to: Edit tribe_the_notices "This event has passed" Text #1413609
    Crisoforo
    Keymaster

    Hey!

    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.
    Crisoforo

    in reply to: Local Test and development server #1413509
    Crisoforo
    Keymaster

    Hey 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,
    Crisoforo

    in reply to: please help to solve translate problem from EN to DE #1413394
    Crisoforo
    Keymaster

    Hi 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
    Crisoforo

    in reply to: how to delete an event from frontent #1413391
    Crisoforo
    Keymaster

    Hey!

    Thanks for reach out, would you mind confirm this is no longer an issue on your end?

    Thanks

    in reply to: how to delete an event from frontent #1413389
    Crisoforo
    Keymaster

    This reply is private.

    in reply to: please help to solve translate problem from EN to DE #1413388
    Crisoforo
    Keymaster

    This reply is private.

    in reply to: how to delete an event from frontent #1413385
    Crisoforo
    Keymaster

    Closing this one as we have another ticket opened as duplicate of this one we can follow up from there:

    in reply to: please help to solve translate problem from EN to DE #1413381
    Crisoforo
    Keymaster

    Hey!

    I’m going to close this one so we can follow up from the original thred:

    please help to solve translate problem from EN to DE

    in reply to: please help to solve translate problem from EN to DE #1413379
    Crisoforo
    Keymaster
    in reply to: Changing Featured Event Colors? #1412941
    Crisoforo
    Keymaster

    Awesome. I’m going to close the ticket and feel free to reach again if you have more questions.

    in reply to: Changing Featured Event Colors? #1412908
    Crisoforo
    Keymaster

    Hey 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.


    // 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,
    Crisoforo

    in reply to: Maps view – Paste events? #1412880
    Crisoforo
    Keymaster

    Hey.

    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
    Crisoforo

    in reply to: Better HTML structure in date and time meta output #1412860
    Crisoforo
    Keymaster

    Hey!

    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.

    Crisoforo
    Keymaster

    Awesome!

    I’m glad I was able to give you some help on this one.

Viewing 15 posts - 106 through 120 (of 144 total)