I've defined a View page that looks very similar to a taxonomy page, and have given it a menu entry.

I've also defined child menu entries under the entry for the View.

When I click the View menu item, it doesn't expand, while a similarly defined taxonomy page does expand.

There are no duplicate links or spaces in the paths.

Comments

atuline’s picture

Status: Active » Closed (fixed)

Solved.

Entering the full path = BAD i.e. 'http://www.foobar.com/?q=view/test'

Entering just the view path = GOOD i.e. 'view/test'

jaydunford’s picture

PHP 5.1.6
Drupal 5.7
views-5.x-1.6

I came across this issue recently. Seem to remember it was because I used the Drupal menu page to create all my menu items before I actually created my views.

I had something like:

link 1
link 2
link 3 (/news view)
--link 4 (/news/archive view)
link 5

In my case to solve the issue (link 3 not expanding when clicked on) I just deleted the menu items (on the Drupal menu page) then went into edit my views and created them again in the menu option there. Once that was done I could return to the Drupal menu page and change the parent menu items + weighting to position them as I wanted.

Hope this helps
Cheers

(BTW The solution in #1 that atuline outlined made no difference for me)