1
votes

I work with drupal 7 . I have created custom theme and I want to use different templates for different pages

My site base link is http://localhost/new/drupal and I want to use template for http://localhost/new/drupal/home page , I have page-home.tpl.php file but it is not working

Can anybody help me?

1
Clear your cache ? then test it.. - anik4e
Yes , I did it, but not wirking - javagc
Change page-home.tpl.php to page--home.tpl.php - anik4e
Thank you man, Please write this as answer - javagc

1 Answers

1
votes

Drupal 7 page template is jut like that -

page--[NAME].tpl.php

Change the file name "page-home.tpl.php" to "page--home.tpl.php". Don't forget to clear cache.

Here is Drupal page template tutorial. Read this tutorial before started theme develop.