Submit Article Action

Tician 19 Jan, 2015
I'm using Chronoforms V4 in Joomla 2.5.

I made a little form with several fields and a "submit article" action which worked fine. The form is correctly published where I want it and on submission a joomla article is created - but only the data of 2 fields of the form are written in the Joomla article.

Introtext and fulltext

But I need the complete form data in the article. Everything a user fills in the form should be submitted in the joomla article. Not only the data of 2 fields.

I searched the forum up and down for a solution but had no luck so far.

In this topic http://www.chronoengine.com/forums/posts/f26/t92788.html a forum user seemed to have had the same problem. But the link to the solution doesn't work any more.

As my search went on I tried to make a custom code action like suggested in this topic:
http://www.chronoengine.com/forums/posts/f5/t98115/article-submission-form.html?hilit=submit+article

But somehow the action doesn't work. There are still only the values of 2 fields in the article. Well, actually the value of one field as the intro text field with "full_text" doesn't submit.

My custom action code:

<?php
$form->data['full_text'] = "
<div>{$form->data['firma']}</div></br>
<div>{$form->data['inhaber']}</div></br>
<div>{$form->data['street']}</div></br>
<div>{$form->data['plz_ort']}</div></br>
<div>{$form->data['telefon']}</div></br>
<div>{$form->data['mail']}</div></br>
<div>{$form->data['beschreibung']}</div>
";
?>


I can't figure out what goes wrong. Can anybody help me ? 😢
This topic is locked and no more replies can be posted.