Please Log in or Create an account to join the conversation.
ncmed wrote: I have JoomlaQuiz Deluxe with the table #_quiz_r_student_quiz and the rows c_student_id and c_passed. The student id is the same id as the user id so I would think it can be used as a parameter to the query. The c_passed is holding true when the user has passed their quiz. I would like my cb_trainingpass radio button field to go from no to yes. Is this possible?
I have tried a few queries with CB Auto Actions plugin and one of the query new field
plugins with no luck. This could be my not accurately writing my query though.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Your query isn't user specific (no user id in where statement). So you're updating every user row everytime this fires and depending on the trigger being used this could be an extremely bad idea (as your userbase grows the query when get slower and slower).2)This DOES update user specific fields. It actually grabs the information from the #__quiz_r_student_quiz table and adds it to #__comprofiler table in the proper column.
Please Log in or Create an account to join the conversation.