I've enabled the module and assigned access to the appropriate users, but I am not able to administer favorite Nodes. It does not show up on my admin screen at all. Any help with getting this to show up is much appreciated :)

Comments

evyawebsites’s picture

i have the same problem with it, please help

TheGecko’s picture

Same problem here.

You can get to the settings via /admin/settings/favorite_nodes (you can see the paths for the module in the favorite_nodes_menu($may_cache) function in favorite_nodes.module)

but having said that I am having trouble getting any of the functionality working

ggr88’s picture

I also cannot see under administer, but can get to /admin/settings/favorite_nodes, and seems to be working after setup.
Gareth

wilson98’s picture

Assigned: Unassigned » wilson98
Status: Active » Fixed

here's the solution.
1. open the file favorite_nodes.module, find the function favorite_nodes_menu($may_cache), you're see the code like this:

$items[] = array(
'title' => 'Favorite node settings',
'path' => 'admin/settings/favorite_nodes',
'description' => 'Settings for favourite nodes',
'callback' => 'drupal_get_form',
'callback arguments' => 'favorite_nodes_settings',
'type' => MENU_CALLBACK,
'access' => user_access(FAVORITE_NODES_PERM_ADMINISTER),
);

2. replace the 'type' value MENU_CALLBACK with MENU_NORMAL_ITEM,

3. clear your cache_menu in your db,

4. done. now you should see the menu 'favorite nodes setting' under admin/settings menu.

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.

guldi’s picture

Category: support » bug
Status: Closed (fixed) » Closed (duplicate)