*

mya mzz

  • **
  • 5 posts
How to change the title of the browser tab on the contact page?

The website page is: terra-macc.eu/contact
I would like to change the title to ‘Contatti | Terra-Mac’ but I cannot find the string in the TRANSLATION section (both Core and Theme).

*

MB Themes

Re: How to change the title of the browser tab on the contact page?
« Reply #1 on: July 10, 2025, 10:38:01 AM »
I would say translation just say "Contact". You may need to use plugin to manage these meta tags.
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots

*

mya mzz

  • **
  • 5 posts
Re: How to change the title of the browser tab on the contact page?
« Reply #2 on: July 11, 2025, 12:05:18 PM »
SOLVED IN:

<title><?php echo meta_title(); ?></title>

....

<title>
<?php
  if (osc_get_osclass_location() === 'contact') {
    echo 'Contact - TerraMac';
  } else {
    echo meta_title();
  }
?>
</title>
 



*

MB Themes

Re: How to change the title of the browser tab on the contact page?
« Reply #3 on: July 14, 2025, 11:10:52 AM »
Yes that works as well ;)
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots