I thought I'd post some background information on this because I have spend a fair amount of time digging around in toe dialogue code this week.
it is possible to change the Member Type to something other than "Dialogue Member"; there is a little effort required. In my case, I have removed the "Dialog Member" member type and opted to just use the standard member type that is built in.
here is a quick summary of what I did
Change the constant in the source code, there are actually 2 of them located in the same place that need to be changed (one with and one without the space) - you can find the constant in AppConstants.cs within the DialogLogic source code.
You will need to manually add ALL of the properties found in the Dialog Member member type to whatever member type you want to use, the important thing is that the generated property names MUST match what is present in the member type provide by the package.
I am still testing my changes, but I wanted to capture the things I have done to make this work. If I find other things that need to be changed, I'll post a followup message.
Changing the "Dialog Member" membertype -- info
I thought I'd post some background information on this because I have spend a fair amount of time digging around in toe dialogue code this week.
it is possible to change the Member Type to something other than "Dialogue Member"; there is a little effort required. In my case, I have removed the "Dialog Member" member type and opted to just use the standard member type that is built in.
here is a quick summary of what I did
Change the constant in the source code, there are actually 2 of them located in the same place that need to be changed (one with and one without the space) - you can find the constant in AppConstants.cs within the DialogLogic source code.
You will need to manually add ALL of the properties found in the Dialog Member member type to whatever member type you want to use, the important thing is that the generated property names MUST match what is present in the member type provide by the package.
I am still testing my changes, but I wanted to capture the things I have done to make this work. If I find other things that need to be changed, I'll post a followup message.
Just a side note, the current beta version (2.0) from GitHub includes a change that moves this into a configuration file. :-).
It also works fine with Umbraco 7.5.x and 7.6.
(Thanks Lee!)
is working on a reply...