Hi everyone!
I am a beginner with Chronoforms and I need some advice on how to solve a problem.
I need to create a form for a customer that contains some parts that can be easily changed by the customer, i.e., without dealing with sourcecode.
It is a event-sign-up form and the customer wants to be able to edit a short introduction text (max. 5 lines I guess), the name of the event and the date of the event.
The goal is to have one form that can be used for many events.
Now, the best thing would be if the form could pull the data from some place where it is easily updateable for the customer.
Does anyone know how to do this?
I solved the problem with the event name and event date by using GET parameters.
The link to my form would be
and my form code would contain
But (1) now my customer has to write in the event name and event date directly into the link on the page linking to the form and (2) this won't work (or perhaps it would work, but I won't do it) for the introduction text since it is too long.
Please tell me if you want more details, I tried to explain it as good as I can.
I would be thankful for any commetns and hints!
I am a beginner with Chronoforms and I need some advice on how to solve a problem.
I need to create a form for a customer that contains some parts that can be easily changed by the customer, i.e., without dealing with sourcecode.
It is a event-sign-up form and the customer wants to be able to edit a short introduction text (max. 5 lines I guess), the name of the event and the date of the event.
The goal is to have one form that can be used for many events.
Now, the best thing would be if the form could pull the data from some place where it is easily updateable for the customer.
Does anyone know how to do this?
I solved the problem with the event name and event date by using GET parameters.
The link to my form would be
index.php?option=com_chronocontact&chronoformname=anmalan&eve=EVENTNAME&date=DATE
and my form code would contain
<input type="text" value="<?= $_GET["eve"] ?>" />
<input type="text" value="<?= $_GET["date"] ?>" />
But (1) now my customer has to write in the event name and event date directly into the link on the page linking to the form and (2) this won't work (or perhaps it would work, but I won't do it) for the introduction text since it is too long.
Please tell me if you want more details, I tried to explain it as good as I can.
I would be thankful for any commetns and hints!