• Home
  • Get help
  • Ask a question

Reduced schedule during conference and annual break

We'll be operating with a reduced schedule from tomorrow and the next few weeks, as follows:

We'll be travelling and attending JoomlaDay USA from Tuesday April 22 to Friday April 25. Support will have extended response time during this period. From April 25 evening to Tuesday May 12 included, support will be closed for our annual break.

Don't forget to look up the documentation, including the videos, your answer may already be there! Likewise, be sure to check the Development versions area, in case your problem may already have been solved.

In case of emergency (ie your site is down with a fatal error directly linked to one of our extensions), please contact us by email (see contact icon at the bottom of all pages of this site)

#8995 – Pages title - Append to page titl

Posted in ‘4SEO’
This is a public ticket. Everybody will be able to see its contents. Do not include usernames, passwords or any other sensitive information.
Friday, 26 August 2022 08:29 UTC
adambako

hi. i cant find setting for append something to page title for all pages.

i have to do this manually?

Friday, 26 August 2022 08:50 UTC
wb_weeblr

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

 

 
Friday, 26 August 2022 09:05 UTC
adambako

ok. page title is important seo factor.

yes. i need to add company name after titles

Friday, 26 August 2022 10:54 UTC
wb_weeblr

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

 

 

 
Monday, 26 September 2022 05:34 UTC
system
This ticket has been automatically closed. All tickets which have been inactive for a long time are automatically closed. If you believe that this ticket was closed in error, please contact us.
This ticket is closed, therefore read-only. You can no longer reply to it. If you need to provide more information, please open a new ticket and mention this ticket's number.