Hello
currently, the affiliate tabs is next to the 'view' tabs in the user account page. Can I set the weight for the tabs then I can move the tabs to other position ? or where I can change the position of the tabs ?
Thanks
Hello
currently, the affiliate tabs is next to the 'view' tabs in the user account page. Can I set the weight for the tabs then I can move the tabs to other position ? or where I can change the position of the tabs ?
Thanks
Freely,
I just looked and didn't find any modules that do it, and I am reluctant to add this to my module because if we get too many settings it will start to get cluttered...
I can walk you through making your own module, which is actually much easier than you think.
First, create a new directory called 'mymodule'
In this directory, create two files: mymodule.info, and mymodule.module
This is the mymodule.info file:
name = My Module
description = Tweaks for My Site
package = Administration
core = 6.x
This is the mymodule.module file:
// Start

You can change the weight of any menu items with a custom module and hook_menu_alter.
Try:
function yourmodule_menu_alter(&$items) {
$items['user/%user/ms_affiliate']['weight'] = 99;
}
Let me know if that works or not :)
-Leighton