Please Log in or Create an account to join the conversation.
Delete it and re-create it. The data between a text field and a date field basically isn't compatible. Alternative is to dig into _comprofiler_fields and edit the type to a date field then within _comprofiler change its column type to date.I have a field that used to be a textfield, I would like to transform it into a calendar field for user to pick a date. I am not able to edit the field type, I could do it from db but is it safe? What is the type name for calendar?
You'll need multiple actions to accomplish what you're wanting. They're executed in the order specified within the Actions list. So yes you could have it delete usergroups before adding new ones; simply order it before the others.Is this solution doable? I would need the possibility of doing two user groups action is this possible? How are the action processed? I could tell the system to process the delete action before every other adding action. That I think will include a lot of useless repetitions.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Create a date field to compare against. Then create a query action to update _users and set their block status to 1 to block their account. For the conditional you'd use the below for example.I would like to disable user login when that date is reached automatically. How would I do that with auto action? I need to create a variable for todays date and compare it with that date in the field. I imagine this is possible but can be a bit tricky. Could you please enlighten me?
Yes, simply condition [var1_cb_mydatefield] Not Equal To [var3_cb_mydatefield] to check that it changed on the after profile update trigger. You can use this with any action you want (e.g. Email action).I would also like to send an email notification when this date field is changed in the profile to a specific email address is this possible as well?
Please Log in or Create an account to join the conversation.