Well, I want to thank every one for participating. I have solved this little riddle. If you go to the ActionBase.vb file in the path: DotNetNuke --> Admin --> Containers, look for the following bit of code:
' help module actions available to content editors and administrators
If _portalModule.ModuleConfiguration.ControlType <> SecurityAccessLevel.Anonymous And Request.QueryString("ctl") <> "Help" Then
_menuActionRoot.Actions.Add(GetNextActionID, Services.Localization.Localization.GetString(ModuleActionType.ModuleHelp, Services.Localization.Localization.GlobalResourceFile), ModuleActionType.ModuleHelp, "", "help.gif", NavigateURL(_portalModule.TabId, "Help", "ctlid=" & _portalModule.ModuleConfiguration.ModuleControlId.ToString, "moduleid=" & _portalModule.ModuleId), Secure:=SecurityAccessLevel.Anonymous, Visible:=
True, NewWindow:=False)
If Not Null.IsNull(_portalModule.ModuleConfiguration.HelpUrl) Then
_menuActionRoot.Actions.Add(GetNextActionID, Services.Localization.Localization.GetString(ModuleActionType.OnlineHelp, Services.Localization.Localization.GlobalResourceFile), ModuleActionType.OnlineHelp, "", "help.gif", FormatHelpUrl(_portalModule.ModuleConfiguration.HelpUrl, _portalModule.PortalSettings, _portalModule.ModuleConfiguration.FriendlyName), UseActionEvent:=
True, Secure:=SecurityAccessLevel.Edit, Visible:=True, NewWindow:=True)
Else
_menuActionRoot.Actions.Add(GetNextActionID, Services.Localization.Localization.GetString(ModuleActionType.OnlineHelp, Services.Localization.Localization.GlobalResourceFile), ModuleActionType.OnlineHelp, "", "help.gif", FormatHelpUrl(glbHelpUrl, _portalModule.PortalSettings, _portalModule.ModuleConfiguration.FriendlyName), UseActionEvent:=
True, Secure:=SecurityAccessLevel.Edit, Visible:=True, NewWindow:=True)
End If
End If
You can do this two ways: Completely comment out the first if statement and the last 'End If' or remove everything from the first if statement except Request.QueryString("ctl") <> "Help" and make an if statement out of just that. I briefly tested the second method and so far it seems to work. You must also change the security level of the control. Anonymous will show the help link for everybody logged in or not. I believe view will show the icon for only users that are logged in, but that is all that is required.
I hope somebody out there is helped by this. I know it took me a whole lot of effort to figure this out.
Thank you for letting me use this forum as a spring board to this conclusion.
Sincerely,
jbaisden