Doesn't work. Going crazy

panzacchio - December 7, 2008 - 22:57
Project:Menu Trails
Version:6.x-1.0
Component:Miscellaneous
Category:support request
Priority:normal
Assigned:Unassigned
Status:postponed (maintainer needs more info)
Description

Hi.
Im using the 6.6 version of drupal.

I'm newie, and I0m going crazy with this module.
Seems so easye to use, but I don't now why it doesn't work....

Thanks to everyone tha will help me.

I did the following:

1_downloadad the zip file
2_ exctracted
3_paste and copy in modules directory
4_enabled the module in drupal
5_setted the options

but it still doesn't work!

Is there anything missing?

Sorry....maybe it's so simple for a more expert user....

Please help....

#1

sun - December 7, 2008 - 23:39

5_setted the options

but it still doesn't work!

Do you really think that you provided sufficient information to expect someone to support you?

#2

sun - December 7, 2008 - 23:39
Assigned to:panzacchio» Anonymous
Status:active» postponed (maintainer needs more info)

#3

panzacchio - December 8, 2008 - 07:30

Auch....

Ok I'm sorry....I try to explain better what i did.

1_downloaded the file
2_extracted
3_copied the entire folder into modules folder of drupal
4_in drupal I enabled the module, and i did this following the path: administer/modules
5_finally, under administer/Site configuration/Menu Trials i setted the following settings:

*Menutrails Menu: Primary links
*Breadcrumbs not setted
*node types none (but i also tried with the only other option given, that was the only link I just putted for testing in my primary links menu

That's all....I was supposing it to work after this...But maybe I'm wrong....

I hope it'more clear now....Thanks a lot again.

#4

sun - December 8, 2008 - 13:42

Did you actually try to assign a content-type to a menu item, and to create a new node of this content-type (without a menu item) afterwards?

#5

panzacchio - December 8, 2008 - 17:45

Yep....no results....:-(

#6

hundreds - December 14, 2008 - 21:48

It may be that your theme is not applying the correct styling to the active items.

see this thread for an example:
http://drupal.org/node/328517

You can easily check this by viewing the page source to see if the class 'active' or 'active-trail' is being applied where you would expect it. If it is then menutrails is working, you just need to fix the css.

#7

neek - January 11, 2009 - 01:46

same sh*t!

i have one primary-links menu with two main items based on taxonomy terms of one main vocabulary...

FIRST ITEM is taxonomy/term/1+2+3+4
SECOND ITEM is taxonomy/term/5+6+7+8

so Menu trails was perfect soulution for me..

i install menutrails, choose options for Primarylinks, setuped "FIRST or/SECONDS items" for each term....

and have no results... + i tryed to change Theme, because i uses my with some snippets and modifications...

but no effect.
;(

with content types its doent work too for me.

#8

neek - January 11, 2009 - 02:16

i uses 'framework' and i found a code in template.php

/**
* Adds even and odd classes to

  • tags in ul.menu lists
    */
    function phptemplate_menu_item($link, $has_children, $menu = '', $in_active_trail = FALSE, $extra_class = NULL) {
    static $zebra = FALSE;
    $zebra = !$zebra;
    $class = ($menu ? 'expanded' : ($has_children ? 'collapsed' : 'leaf'));
    if (!empty($extra_class)) {
    $class .= ' '. $extra_class;
    }
    if ($in_active_trail) {
    $class .= ' active-trail';
    }
    if ($zebra) {
    $class .= ' even';
    }
    else {
    $class .= ' odd';
    }
    return '
  • '. $link . $menu ."
  • \n";
    }

    may be this info can help in fixing this...
    im not a programmer.

    + in content types here is adds active-trails class. and works fine

    #9

    neek - January 11, 2009 - 03:41

    menutrails works for me with paths like >>

    Home » Term1 (or Term 2, etc) » Node title

    but doesnt work with >>
    Home » Term1

     
     

    Drupal is a registered trademark of Dries Buytaert.