Z
Z
Z_Coder2013-11-22 15:29:47
Drupal
Z_Coder, 2013-11-22 15:29:47

How to display the desired title on the main page in drupal 7?

Hello. How can I display the title I want on the main page. <?php print $title?> does not work on the main page. As I understand it, you can solve this through page--front.tpl.php, but how to do it correctly? Do I really have to copy the entire page.tpl.php while writing only the title I need? Or are there any other solutions? I've only been using Drupal for a week. Thank you.

Answer the question

In order to leave comments, you need to log in

2 answer(s)
I
Ivan Sobolev, 2013-11-22
@Z_Coder

<? 
//page.tpl.php

if ($is_front) { //флаг "главная страница"
  echo 'Мой заголовок';
}

?>

N
novartema, 2014-01-23
@novartema

template.php in theme

function mytheme_preprocess_page(&$variables){
    if (drupal_is_front_page()){
        drupal_set_title('New title');
    }
}

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question