Still on Drupal 7? Security support for Drupal 7 ended on 5 January 2025. Please visit our Drupal 7 End of Life resources page to review all of your options.
I can't seem to figure out how to make a menu of a view.
I have a view that works correctly as a page, and I want to insert it into the navigation menu (which I am using with nicemenus.) so it looks like this:
I just solved one problem, and then another one came up :D.
I'm making custom theme and I've put the code for deciding which page to load in page.tpl.php and it goes like this:
<?php
if ($is_front)
{
include'front-page.tpl.php';
return;
}
if (arg(1)==4)
{
include 'page-agenda.tpl.php';
return;
}
include 'page-default.tpl.php';
return;
?>
The problem is that when i go to Administer/Menus i don't get anything but white screen!
I have just now put in the override code into the template.php file, and am now able to see my user_profile.tpl.php (also known as profile_profile.tpl.php) file instead of the default profile. However I have no idea how to show the NodeProfile information. I assumed that this :
I have to build a site with a complexe graphic design.
- I'd like to contol every graphical aspect of the site.
- I have N pages with each a diifferent layout.
- pages are organized in many blocks.
- blocks can contain flash + remoting, drupal content, lists of content, modules output...
- I use the modules : Ad, MailManager, SWF Tools, Service, AMFPHP, Agregator, etc...