Viewing 18 posts - 1 through 18 (of 18 total)
  • Author
    Posts
  • #1468553

    Hi
    Although this is an events calendar question i hope you can help me…
    For a client (veterinary surgeon ) i create a emergency list of veterinary practices.
    I want to disable previous and next events below the list view and the line upcoming events.
    Also i want to change the titel events to “spoeddiensten”

    What can i do?
    Thanks in advance.

    #1468619

    Hey leloux,

    Thank you for the inquiry.

    We can’t find the events list on the page, only the shortcode [add_eventon_list]. Did you remove the list? Please create a test page so we can inspect the element.

    Best regards,
    Ismael

    #1468645

    Hi Ismael
    This is the link to the events ( = spoeddiensten ) list page:
    https://www.testomgeving.org/DAP/spoeddiensten/list/

    and the link to the events ( = spoeddiensten ) month page
    https://www.testomgeving.org/DAP/spoeddiensten/month/
    Hopefully it is allright now so you can inspect the element..
    Greetz
    Karin

    #1468686

    Hi,

    Thank you for the update.

    You can hide the next and previous navigation with this css code:

    .tribe-common--breakpoint-medium.tribe-events .tribe-events-c-nav__list-item {
        display: none;
    }

    What do you mean by “title events”? Would you mind providing a screenshot of the element? You can use platforms like Savvyify, Imgur or Dropbox to upload and share the screenshot.

    Best regards,
    Ismael

    #1468717

    Hi Ismael
    It works perfect! Thanks!
    What i mean is: i want to change “events” to “spoeddiensten”…because i dont use the calendar and list for events but for emergency services ( “spoeddiensten”in dutch )
    Hope you can help me again.
    credentials are in the private content

    Thanks in advance
    Karin

    #1468719

    Hi Ismael
    Can i change the tooltip in the calendar view to permanent view? ( in the events calendar )
    I mean that the information of the practices ( location etc. ) is always visible in the calendar view?
    Hope you can help me…
    Greetz
    Karin

    #1468754

    Hi,

    Thank you for the clarification.

    Please try this filter in the functions.php file:

    add_filter('tribe_event_label_plural', 'avf_custom_tribe_events_label_plural');
    
    function avf_custom_tribe_events_label_plural($label) {
        return 'Spoeddiensten';
    }
    

    Best regards,
    Ismael

    #1468787

    Hi Ismael
    Tnx!
    The main title has changed into “spoeddiensten” but some vieuws still show the title “evenementen”.. i would like to change all titles to “spoeddiensten”.
    Hereby a link to a screenshot to explain what i mean.

    Gretz
    Karin
    https://img.savvyify.com/image/Screenshot-2024-10-10-at-11-05-14-Spoeddiensten-in-1-oktober-2024-%E2%80%93-dapoostkapelle.nl.9aTXh

    • This reply was modified 1 month, 2 weeks ago by leloux.
    #1468788
    #1468884

    Hi,

    Thank you for the screenshot.

    Please try to use this filter in the functions.php file:

    function avf_change_tribe_event_categories_label( $translated_text, $text, $domain ) {
        if ( $text === 'Event' && $domain === 'the-events-calendar' ) {
            $translated_text = 'Spoeddiensten';
        }
    
        return $translated_text;
    }
    add_filter( 'gettext', 'avf_change_tribe_event_categories_label', 20, 3 );

    Best regards,
    Ismael

    #1468912

    Hi Ismael
    Tnx!
    It’s allmost done…
    Can you tell me how to disable “evenementen-navigatie”?
    I put the link below in the private content..
    Greetz
    Karin

    #1468944

    Hi,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    .single-tribe_events #tribe-events-footer {
    	display: none;
    }

    Best regards,
    Mike

    #1468978

    Tnx Ismael
    It works fine!
    My final question has to do with the tooltip in the month view.
    Is it possible to see the whole text instead of a tooltip? I mean: no tooltip->just sticky text
    See the link in the private content

    Greetz
    Karin

    #1468990

    Hi,
    Do you mean this:
    Screen Shot 2024 10 12 at 10.57.55 AM
    What do you want to see instead?

    Best regards,
    Mike

    #1469016

    Hi Mike
    Yes that is what i mean and i want to see the complete text instead of a tooltip so the veteran surgeons can see immediately which practice has the emergency service in a calendar overview..
    Tnx in advance
    Greetz
    Karin

    #1469019

    Hi,
    I don’t believe that there is a way to do that.

    Best regards,
    Mike

    #1469086

    Hi Mike
    That is a pity but i think this won’t be a big issue…
    Tnx for your help and Ismael as well.
    Greetz
    Karin

    #1469126

    Hi,

    You’re welcome! Glad we could be of help. Please feel free to open another thread if you have more questions about the theme.

    Have a nice day.

    Best regards,
    Ismael

Viewing 18 posts - 1 through 18 (of 18 total)
  • The topic ‘the events calendar list view disable previous and next event’ is closed to new replies.