Please Log in or Create an account to join the conversation.
No, not without developing something to do that. You'd need to use jQuery to pull those values from their fields and display them back. As this needs to happen in realtime you will not be able to use CB Query Field or CB Code Field for this. You need custom jQuery and some HTML.So can a tab be set up in the profile edit called summary with all the things they have filled in so they can see it in one place?
Yes, that's doable using CB Auto Actions. You'll likely need to use after user registration and after user update triggers to cover frontend registration and profile edit. You'd then use an Email or Private Message action with the fields you want to trigger this set as conditions.Then I have a few fields that they select that alerts me they are ready for review.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
It queries the database and displays the results, but that's not what you're doing here. You're wanting them to verify their information that they just completed on the last few profile tabs before they save. There's nothing to query for as it's not stored in the database yet.Hello, perhaps I did not explain this? What does the database thing do then if not show database info on the site?
I guess you can try substituting the fields into Custom HTML fields then using the Update On functionality from CB Core Fields Ajax to cause those Custom HTML fields to refresh based off the field they're dependent on changing. Example as follows.It seems like everything I can think of can't be done. Perhaps you can help me figure out a solution? I have to have some solution or I cannot use this at all.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
This makes things a bit more clear. You don't need CB Query Field at all in this case. Install CB Content Bot so you can utilize substitutions in Joomla articles. Next add all the HTML and substitutions you want for your summery page. Then in CB Auto Actions on the after user update trigger redirect them to that Joomla article (use non-SEF beginning with index.php for the URL). This should give you your summery page. See the below tutorial for substitution usage information.So as they filling in things and after they click update throughout the process this summary tab will show what's been filled in. I do not want it to do anything but display what's completed.
You'd just have CB Conditional show your fields based off the checkbox field having a value equal to 1 (checked).Then I will add a few checkboxes that are set to trigger the progress fields that they must do themselves.
An email auto action acting on the after user update trigger with a condition of [cb_progressfield] Equal To 100 since the [FIELD_NAME] substitution of a progress field will give you the percent complete.Finally when the progress field is at a certain % it sends an email to the admin.
Please Log in or Create an account to join the conversation.