developmentseed / developmentseed/FeatureServer

SEO issue: titles

Open
#12 0 comments 0 reactions 0 assignees View on GitHub
Dominant language
PHP
Stars
46
Forks
14
PR merge metrics
No merged PRs in 30d

Description

Currently FServer causes the main project page and the associated "all releases" page to have an identical title, which gets reported in Google webmasters tools.

A possible quick fix is to modify the head title when the page template is the one for releases, indicating that this is the releases page:

/**

* Implements hook_preprocess_page().
*/
function fserver_preprocess_page(&$vars) {
if (in_array('page-node-releases', $vars['template_files'])) {
list($title, $site) = explode(' | ', $vars['head_title']);
$vars['head_title'] = t('@title: All releases | @site', array(
'@title' => $title,
'@site' => $site,
));
}
}

Contributor guide

No contributing guide indexed for this repository

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.