here I go again :$ sorry to bother you guys this much... 😶
With my chronoforms registration profile plugin I was able to save the 'user id' of the user who submits the form, but with my chronoconnectivity I need to show the name of that user and not only the ID (along with other information saved from the form😶 ), I have the php query to get the names but I don't know where or how to put it in my chronoconnectivity report. I would really appreciate your assistance with this I am sure is probably something really simple but as I said before I am a newbie... 😢
With my chronoforms registration profile plugin I was able to save the 'user id' of the user who submits the form, but with my chronoconnectivity I need to show the name of that user and not only the ID (along with other information saved from the form😶 ), I have the php query to get the names but I don't know where or how to put it in my chronoconnectivity report. I would really appreciate your assistance with this I am sure is probably something really simple but as I said before I am a newbie... 😢
$sql = "SELECT `jos_users`.`name`\n"
. "FROM `jos_users`, `jos_chronoforms_chr_talisma_tracker`\n"
. "WHERE (`jos_chronoforms_chr_talisma_tracker`.`cf_user_id` = `jos_users`.`id`)\n"
. " LIMIT 0, 30 ";