-
AuthorPosts
-
October 7, 2024 at 11:11 am #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.October 8, 2024 at 4:27 am #1468619Hey 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,
IsmaelOctober 8, 2024 at 1:16 pm #1468645Hi 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
KarinOctober 9, 2024 at 5:50 am #1468686Hi,
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,
IsmaelOctober 9, 2024 at 10:22 am #1468717Hi 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 contentThanks in advance
KarinOctober 9, 2024 at 10:56 am #1468719Hi 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
KarinOctober 10, 2024 at 4:01 am #1468754Hi,
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,
IsmaelOctober 10, 2024 at 11:12 am #1468787Hi 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.- This reply was modified 1 month, 2 weeks ago by leloux.
October 10, 2024 at 11:13 am #1468788Sorry; two times…
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.
October 11, 2024 at 4:16 am #1468884Hi,
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,
IsmaelOctober 11, 2024 at 11:27 am #1468912Hi 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
KarinOctober 11, 2024 at 5:49 pm #1468944Hi,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:.single-tribe_events #tribe-events-footer { display: none; }
Best regards,
MikeOctober 12, 2024 at 2:13 pm #1468978Tnx 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 contentGreetz
KarinOctober 12, 2024 at 4:59 pm #1468990October 13, 2024 at 11:22 am #1469016Hi 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
KarinOctober 13, 2024 at 2:07 pm #1469019October 14, 2024 at 3:19 pm #1469086Hi Mike
That is a pity but i think this won’t be a big issue…
Tnx for your help and Ismael as well.
Greetz
KarinOctober 15, 2024 at 6:42 am #1469126 -
AuthorPosts
- The topic ‘the events calendar list view disable previous and next event’ is closed to new replies.