Hello,
i am using Chronoforms v4 for my fishing club and up until now I used it only for contact form.
Now i want to create an application form for events, but unfortunately i have no clue how to get started.
Basically, it should be a simple form with three fields:
“Event description”, “Register” (Submit) button, and a “Registered users” field where the already registered members are listed (I think some kind of custom code field)
Now, when the user click on “Register” button, his username should appear and stay in the “Registered users” field (below the other usernames which already are registered).
I know how to read the username field from Joomla:
<?php
// Get user-information from Joomla
$user = &JFactory::getUser();
?>
But how can i inject the username into the “Registered users” field?
Thank you in advance!
i am using Chronoforms v4 for my fishing club and up until now I used it only for contact form.
Now i want to create an application form for events, but unfortunately i have no clue how to get started.
Basically, it should be a simple form with three fields:
“Event description”, “Register” (Submit) button, and a “Registered users” field where the already registered members are listed (I think some kind of custom code field)
Now, when the user click on “Register” button, his username should appear and stay in the “Registered users” field (below the other usernames which already are registered).
I know how to read the username field from Joomla:
<?php
// Get user-information from Joomla
$user = &JFactory::getUser();
?>
But how can i inject the username into the “Registered users” field?
Thank you in advance!