Hello,
Thanks for pointing that out. If that is the case, it is possible to do that by editing
~\CMSModules\Membership\Pages\Users\User_Edit.aspx.cs file. All you need to do is add a new record to
tabs array in the way other tabs are inserted.
The example could look like this:
lastTabIndex++;
tabs[lastTabIndex, 0] = "Test tab";
tabs[lastTabIndex, 1] = "SetHelpTopic('helpTopic', 'your_helpdoc');";
tabs[lastTabIndex, 2] = ResolveUrl("~/CMSModules/Testing/Pages/Test_Page.aspx?userid=" + userId + "&siteid=" + SiteID);
Best regards,
Filip Ligac