I have figured out the problem (half way) and here is the file and the code to modify, the only thing that's left is to figure out which .dll is the .vb file compiling into so I could upload the right one to the live site...
The file (in the source version) is DotNetNuke.Library/Components/Users/Profile/UserProfile.vb
The code to add for each new custom field (in this case it is CustomValue):
#Region "Private Constants"
Private Const cCustomValue As String = "CustomValue" 'CustomValue is the name for the custom field
#End Region
#Region "Public Properties"
''' -----------------------------------------------------------------------------
''' <summary>
''' Gets and sets the CustomValue
''' </summary>
''' <history>
''' [waldis] 03/31/2007 Added
''' </history>
''' -----------------------------------------------------------------------------
Public Property CustomValue() As String
Get
Return GetPropertyValue(cCustomValue)
End Get
Set(ByVal Value As String)
SetProfileProperty(cCustomValue, Value)
If Not ObjectHydrated Then
ObjectHydrated = True
End If
End Set
End Property
#End Region
I hope someone would be able to give me a clue about dll...
Thanks,
Waldis