0

I want to disable everything on the page (logo, blocks, bottom-menu,...) and only show the content of the view.

With views-view.tpl.php is not really working...

Erik Schierboom
  • 16,301
  • 10
  • 64
  • 81
jimi
  • 213
  • 1
  • 3
  • 10

1 Answers1

1

You should create a vies page & give a path for that page e.g. - myViews.

Copy your page.tpl.php & rename it to something like page--myViews.php.

Remove everything like all the rendered block, logo, header etc which is not needed by you & render only the "content" region & it should work for you.

RajeevK
  • 263
  • 3
  • 15
  • That's not quite right...a view is not a node, it's a view - it doesn't have a node ID. You should use this method, but call the template file `page--myViews.tpl.php` based on the path being `myViews` – Clive Jun 07 '13 at 12:54