Hi,
I am new to ExpressionEngine but I become slowly better. Since yesterday I started trying the Form Helper plugin. So I started with a simple Single Entry form and used the Form Helper Tags with it. My form looks like this:
{exp:form_helper:member_is_author author_id="1"}
{if member_not_author}
Sorry. Only the author of this entry is allowed to edit it.
{/if}
{exp:weblog:entry_form weblog="myblog" return="template/index"}
<input type="hidden" name="entry_id" value="{entry_id}" />
<input type="hidden" name="title" value="{title}" />
<p>Street<br />
<input type="text" name="{exp:form_helper:field_grabber field_name='street'}" value="{street}" />
<input type="hidden" name="{exp:form_helper:field_grabber field_name='street' which='format'}" value="br" />
<p>ZIP<br />
<input type="text" name="{exp:form_helper:field_grabber field_name='zip'}" value="{zip}" />
<input type="hidden" name="{exp:form_helper:field_grabber field_name='zip' which='format'}" value="br" />
<p>City<br />
<input type="text" name="{exp:form_helper:field_grabber field_name='city'}" value="{city}" />
<input type="hidden" name="{exp:form_helper:field_grabber field_name='city' which='format'}" value="br" />
<p>Comment<br />
<textarea name="{exp:form_helper:field_grabber field_name='body'}" rows="10" cols="50" />{exp:form_helper:field_parser}{body}{/exp:form_helper:field_parser}</textarea></td>
<input type="hidden" name="{exp:form_helper:field_grabber field_name='body' which='format'}" value="br" />
</tr>
<input type="submit" name="submit" value="Submit" />
{/exp:weblog:entry_form}
{/exp:form_helper:member_is_author}
The result can you see on the attached pic. And here are my questions:
1. Why appear the values in the forms?
2. I don´t need the title and date fields. But I can´s save the form in the front-end without the title field. Can I disable it somehow?
Thanks a lot in advance for your hints.
---------------
Some additional informations: What do I want?
I want that members can login to their member profile. There they will find a new area (form) where they can enter informations and rate it by the Rating Module. After saving it will be published to the public area which can be customized by me - so that I can show some of the rated entries by specific criteria.
----------------
Thanks and regards,
Lars
P.S. Sorry for the broken English.
