showMetaTitle

This commit is contained in:
Fred Tempez 2022-10-07 17:30:08 +02:00
parent a3c3bd5842
commit 62a42e4a8e
1 changed files with 7 additions and 1 deletions

View File

@ -2033,7 +2033,13 @@ class common
{
echo '<title>' . $this->output['metaTitle'] . '</title>';
echo '<meta property="og:title" content="' . $this->output['metaTitle'] . '" />';
echo '<link rel="canonical" href="' . helper::baseUrl(true) . $this->getUrl() . '" />';
if (
$this->getData(['locale', 'homePageId']) === $this->getUrl(0)
) {
echo '<link rel="canonical" href="' . helper::baseUrl(false) . '" />';
} else {
echo '<link rel="canonical" href="' . helper::baseUrl(true) . $this->getUrl() . '" />';
}
}
/**