Custom Module Standard User
Jamroom Developers
paul:
In that case, maybe show the link as a (dropdown) User Menu item?
You can just create one using ACP=>Core=>System Core=>Tools=>User Menu Editor or you could add it to the module's init function in the include.php file. Checkout one of the modules that does this (eg. jrFollower include.php line 65ish) to see how its done.
hth
In that case, maybe show the link as a (dropdown) User Menu item?
You can just create one using ACP=>Core=>System Core=>Tools=>User Menu Editor or you could add it to the module's init function in the include.php file. Checkout one of the modules that does this (eg. jrFollower include.php line 65ish) to see how its done.
hth
// Skin menu link to 'following'
$_tmp = array(
'group' => 'user',
'label' => 37, // 'Profiles I Follow'
'url' => 'following'
);
jrCore_register_module_feature('jrCore', 'skin_menu_item', 'jrFollower', 'following', $_tmp);
We found some code from jrFollower above, maybe this code is what you suggest to add menu link?
--
We are hoping to keep all functions on the Profile, using profile buttons, since the menus links are more difficult to find especially on the mobile.
--
Is there any way to have "read only" (no stored data) custom profile module tabs, show for all "Standard Users"