Plugin Contributor
John
(@johnlamansky)
Hi vamban,
I just installed Magic Fields and SEO Ultimate on a test blog and the Settings section is still there.
http://i54.tinypic.com/sfh5x0.jpg
Perhaps there’s a third plugin involved? What happens if you disable all your other plugins?
– John
Thread Starter
vamban
(@vamban)
Hello John
As i said earlier, there only 2 plugins (seo-ultimate and magic fields) which is installed in this wordpress installation.
Thread Starter
vamban
(@vamban)
Miss to update some additional info.
I can able to access settings menu, once i deactivate seo-ultimate.
Thread Starter
vamban
(@vamban)
Couple of minutes before, i found something for you.
The problem occurs, if the wordpress installation in sub-folder
But still i can able to access wordpress settings (via admin) menu, by accessing http://www.domainname.com/wp-admin/options-general.php manually. (When both plugins are active)
Does it helps you to troubleshoot the issue?
Expecting your kind co-operation
With regards
vamban
Thread Starter
vamban
(@vamban)
Some more updates for you.
Its really hard to predict, which plugin has problem. If i deactivate any of the plugin (either seo-ultimate or magic fields), i got wordpress settings menu back again.
I’m having the same issue… when combined, settings link disappears π
I guess I’ll have to uninstall one of them π
Plugin Contributor
John
(@johnlamansky)
I tracked down the bug in Magic Fields. Magic Fields alters WordPress’ $menu global without changing the $_wp_last_utility_menu global, which causes the “Settings” menu to disappear whenever a plugin (such as SEO Ultimate) calls WordPress’ add_utility_menu() function.
Until the Magic Fields author fixes this bug, you can add this code after line 375 in magic-fields/RCCWP_Menu.php:
global $_wp_last_utility_menu;
$_wp_last_utility_menu += $offset;
In context, it’ll look like this:
foreach ($menu as $k => $v) {
if($k > 5) $new_menu[$k+$offset]=$v;
}
global $_wp_last_utility_menu;
$_wp_last_utility_menu += $offset;
$menu = $new_menu;
RCCWP_Menu::SetCurrentCustomWritePanelMenuItem();
hi, same problem here, but when i deactivated nextgen and activated magic field , i can access to menu, look like nextgen got the problem too.(if you have nextgen gallery).
Plugin Contributor
John
(@johnlamansky)
@ruslyrossi: The fix I provided should resolve the problem with other plugins as well.