hi. i cant find setting for append something to page title for all pages.
i have to do this manually?
Helpdesk is open from Monday through Friday CET
hi. i cant find setting for append something to page title for all pages.
i have to do this manually?
Hi
As page title importance is reducing and Google has started in 2021 to modify page titles a lot, we have not added that feature to 4SEO yet.
I actually usually recommend to NOT add anything to the page title on all pages, as it's basically a duplicate and it uses characters that should be used for good title text.
What exactly do you want to add to page titles? your site name? something else?
Best regards
Yannick Gaultier
weeblr.com / @weeblr
ok. page title is important seo factor.
yes. i need to add company name after titles
Hi
ok. page title is important seo factor.
Not really, it's now a small factor, but the important thing is that in the second part of 2021, Google started changing your titles if they thought it was not good.
i need to add company name after titles
THAT is bad and is one of the things that will make Google stop using the title you provide and use another title instead. See for instance this article. By adding your company name to all titles, you are making it too long and this is the most common reason why Google will use another title.
If you really, really want to do that, you can use a small piece of code (4SEO uses a system similar to WordPress to allow users to change its behavior):
- open the file /libraries/weeblr/forseo_functions.php
- at the end of this file, paste the following:
$hooks->add( 'forseo_request_info', function ($expandedVariables) { if (strpos($expandedVariables['page_title'], ' company name') === false) { $expandedVariables['page_custom_title'] = $expandedVariables['page_custom_title'] . ' | company name'; $expandedVariables['page_title'] = $expandedVariables['page_title'] . ' | company name'; } return $expandedVariables; } )
Replace ' company name' by your own company name of course.
- save the file and clear all Joomla and browser cache.
Best regards
Yannick Gaultier
weeblr.com / @weeblr