All,
I'm not very proficient in VB coding, so please excuse me for missing out on procedure calls, etc. What I'm trying to accomplish is to remove characters being inserted into the KEYWORD tag in default.aspx in order to boost my sites' SE rankings. The characters that are being inserted are ,DotNetNuke,DNN. The keyword addon is not relevant to what I'm trying sell on my site. I traced the code to the Default.aspx.vb file residing on the main DNN folder on the server. I saw a VB script that inserts, ",DotNetNuke,DNN" in lines 188-196. Below is the code:
I changed this
' META keywords
If PortalSettings.ActiveTab.KeyWords <> "" Then
KeyWords = PortalSettings.ActiveTab.KeyWords
Else
KeyWords = PortalSettings.KeyWords
End If
If GetHashValue(Common.Globals.HostSettings("Copyright"), "Y") = "Y" Then
KeyWords += ",DotNetNuke,DNN"
End If
to this
' META keywords
If PortalSettings.ActiveTab.KeyWords <> "" Then
KeyWords = PortalSettings.ActiveTab.KeyWords
Else
KeyWords = PortalSettings.KeyWords
End If
If GetHashValue(Common.Globals.HostSettings("Copyright"), "Y") = "Y" Then
KeyWords += ""
End If
After I changed line 195, it still inserts the characters at the end of the keywords tag. Am I missing something or is it being inserted somewhere else? If so, can you point me in the right direction so that I can remove the keyword addition?
Any help would be greatly appreciated.
Thanks!
Eric