eswe
Forum Replies Created
-
Forum: Plugins
In reply to: [The Events Calendar] changing Breadcrumb Texthas been settled. For me it was linked-breadcrumb.php und single-event
Forum: Plugins
In reply to: [The Events Calendar] Permalink to Page TitleI was helped. Thanks to @skalanter. Here is the code…
// Alter Events Archive Page Title
function my_alter_page_header_title( $title ) {
// Check if it's the Events Calendar archive page
if ( function_exists( 'tribe_is_event' ) && tribe_is_event() ) {
$title = 'Termine'; // Replace with your desired title
}
// Return the title
return $title;
}
add_filter( 'ocean_title', 'my_alter_page_header_title', 20 );Hallo @skalanter,
That is exactly what it is. Thank you very much…
Forum: Plugins
In reply to: [The Events Calendar] Permalink to Page Title// Alter Blog Title
function my_alter_page_header_title( $title ) {
// Change the posts title to their actual title
if ( is_singular( 'post') || is_category() || is_tag() ) {
$title = 'My Blog Title';
}
// Return the title
return $title;
}
add_filter( 'ocean_title', 'my_alter_page_header_title', 20 );good idea. found the code above. how would I have to adjust “if ( is_singular( ‘post’) || is_category() || is_tag() )” to give the archive page a different title?
Forum: Plugins
In reply to: [The Events Calendar] Permalink to Page TitleThank you for trying again. The code changes the meta title. The “page-header-title” is still the translation of “Events”
In which folder is the file responsible for this and what is it called?
../wp-content/plugins/the-events-calendar/src/views/v2 …Forum: Plugins
In reply to: [The Events Calendar] Permalink to Page TitleThank you for trying to help me. I am apparently not capable enough to understand the help. Thought it would be easier…
Forum: Plugins
In reply to: [The Events Calendar] Permalink to Page TitleHallo?@tristan083,
no, it’s not about the meta titles. Do you know where I would have to change something so that “Events” is not translated but I can enter “Termine” directly so that the page name appears correctly?
Forum: Plugins
In reply to: [The Events Calendar] Permalink to Page TitleHello @tristan083,
thanks for the response. There is no link, but I am happy to describe it again in a different way. Under “Dashboard – Events – Settings” I can change the permalink for the calendar under “Viewing”. I’ve changed it to “termine” ( in english “appointments”).When I call up the calendar, the page shows me the page-header-title “Veranstaltungen”. This is the translation for events. But the permalink says url/termine/. However, I would like “Termine” to be displayed as page-header-title.
I use oceanwp. Does this describe my problem better? Where does the calendar get the page-header-title from?
Thanks in advance for help…