How to delete Home | from the Home | xxx in the front page

Comments

youyoums created an issue. See original summary.

Subhransu.addweb’s picture

Please write the below code in your theme aegan.theme file (i.e themes/aegan/aegan.theme).

/**
 * Implement hook_preprocess_html.
 */
function aegan_preprocess_html(&$vars) {
  $is_front_page = \Drupal::service('path.matcher')->isFrontPage();
  if ($is_front_page) {
    unset($vars['head_title']['title']);
  }
}

Hope this helps you.

Thanks!

youyoums’s picture

denisha.kalariya,thank you very much,as it's actually quite useful!

leopathu’s picture

Status: Active » Fixed

Status: Fixed » Closed (fixed)

Automatically closed - issue fixed for 2 weeks with no activity.