I am trying to create a new member type called 'Standard Member', however when usite builder runs it only creates the member and tabs but NOT the properties. Here is a sample of my code:
[MemberType(Name = "Standard Member", Description = "Member type that describes standard members", IconUrl = "memberType.gif", Thumbnail = "member.gif")]
publicclassStandardMember : MemberTypeBase
{
public StandardMember(string loginName, string email, string password, string confirmGuid) : base(loginName, email, password)
{
ConfirmGuid = confirmGuid;
}
[MemberTypeProperty(UmbracoPropertyType.Textstring, Name = "Confirm Guid", Alias = "confirmGuid", Tab = "Other Details", Mandatory = false)]
publicstring ConfirmGuid { get; set; }
[MemberTypeProperty(UmbracoPropertyType.TrueFalse, Name = "User is verified", Alias = "hasVerifiedEmail", Tab = "Other Details", Mandatory = false)]
publicbool HasVerifiedEmail { get; set; }
uSitebuilder 2 and MemberTypes
Hi,
I am using usiteBuilder 2 along with umbraco 7.
I am trying to create a new member type called 'Standard Member', however when usite builder runs it only creates the member and tabs but NOT the properties. Here is a sample of my code:
Any ideas?
Thanks in advance,
Adam
We have the same problem, properties aren't generating at all for member.
Thanks,
Alex
is working on a reply...