Forum Replies Created
-
AuthorPosts
-
Joël Schmid
ParticipantHello Patricia
Thanks for the infos. Yes, I’m aware that it displays the day, once there are multiple events. I just think this is not very useful and rather confusing. Therefore, please consider this as a feature request.
Cheers, Joël
Joël Schmid
ParticipantThis reply is private.
Joël Schmid
ParticipantThis reply is private.
Joël Schmid
ParticipantHey Geoff
Awesome, thanks for your help! I replaced the deprecated function and completed the snippet, now everything is working as expected, thanks!
Joël Schmid
ParticipantHello Patricia
The [tribe_events_list] shortcode will display the weekdays by default.
Hmm, I’m a bit confused now. Why is it displaying the month in my case except for October where there are multiple events on the same day and that it displays the weekday?
I didn’t do any customizations on wp-content/plugins/events-calendar-pro/src/views/pro/widgets/modules/single-event.php.
Thank you in advance for your feedback!
Joël Schmid
ParticipantThis reply is private.
Joël Schmid
ParticipantThis reply is private.
Joël Schmid
ParticipantHello Geoff
I adapted the script to the following, however, the button didn’t get relabled (Site and Browser Cache was deleted).
` $custom_text = array(
‘Add to cart’ => ‘Jetzt für die Tour anmelden!’,
);Something seems to be missing?
Joël Schmid
ParticipantHey there,
Thanks for your help.
I tried with the following code, but something doesn’t seem to work. What am I doing wrong?
`function tribe_custom_theme_text ( $translation, $text, $domain ) {
// Put your custom text here in a key => value pair
// Example: ‘Text you want to change’ => ‘This is what it will be changed to’
// The text you want to change is the key, and it is case-sensitive
// The text you want to change it to is the value
// You can freely add or remove key => values, but make sure to separate them with a comma
// This example changes the label “Venue” to “Location”, and “Related Events” to “Similar Events”
$custom_text = array(
‘In den Warenkorb’ => ‘Jetzt für die Tour anmelden!’,
);// If this text domain starts with “tribe-“, “the-events-“, or “event-” and we have replacement text
return $translation;
}
add_filter(‘gettext’, ‘tribe_custom_theme_text’, 20, 3); -
AuthorPosts
