Does anybody know how to make the browser <head> profile <title> longer? Now it's like username: the browser title, I want to make it longer like my site name and then the username for search engines. Can't find the file to change it.
Does anybody know how to make the browser <head> profile <title> longer? Now it's like username: the browser title, I want to make it longer like my site name and then the username for search engines. Can't find the file to change it. |
Hello, I change it too. You can do this looking for profile.php in public_html
Look for this:
$_page['header'] = process_line_output( $p_arr['NickName'] ) . ": ". htmlspecialchars_adv( $p_arr['Headline'] );
I had change for this:
$_page['header'] = process_line_output( $p_arr['FirstName'] ) . " ". htmlspecialchars_adv( $p_arr['LastName'] ) . ": ". htmlspecialchars_adv( $p_arr['Headline'] ) .". ". htmlspecialchars_adv( $p_arr['City'] ). ", the text what you want ";
You can make modifications you need. |
Exactly what I wanted thanks a lot. |
Awesome !! Now if I could figure out a way to edit the meta tags for each profile I would be good to go. |