Hi!
I want to keep original title and tagline in always when I’m surfing. For example:
https://drive.google.com/file/d/0B89QUyIFnsEWX0dGaUZUWWRRdlk/view?usp=sharing
And when I’m surfing always shows the same title in a tab:
https://drive.google.com/file/d/0B89QUyIFnsEWUnRmbVM0cFJfd0k/view?usp=sharing
Thanks in advance!
Hey pnacho!
Replace this line in header.php in your enfold/enfold child theme folder:
<title><?php if(function_exists('avia_set_title_tag')) { echo avia_set_title_tag(); } ?></title>
With:
<title><?php bloginfo('name')?> | <?php bloginfo('description'); ?></title>
Best regards,
Arvish
Thank you very much! :)