Issue With Entries [exp:freeform:entries]
Posted: 16 July 2008 01:01 PM   [ Ignore ]
Newbie
Rank
Total Posts:  5
Joined  2006-09-05

So I have used Freeform for sometime. We usually use the records list in the control panel to manage data submitted via Freeform. For a current task, we really needed a simple way to produce an email list from all entries submitted via form. So I figured I would use the exp:freeform:entries tag to loop through and fetch the field we need from the records submitted to that form.

{exp:freeform:entries form_name="convoy_volunteer_registration" dynamic="off"}
{email}
<br />
{/exp:freeform:entries}

That SHOULD work. But it doesn’t it actually returns entries from the ‘email’ field of ALL forms, not just from the one listed. Strangely, it cuts off at 100 records. That makes the page only show the original 100 records submitted and none of those are to the form I need to pull from now.

I must be missing something here. But I have quadruple checked everything and I just cannot find an answer to the problem.

David

Profile
 
 
Posted: 16 July 2008 01:31 PM   [ Ignore ]   [ # 1 ]
Newbie
Rank
Total Posts:  5
Joined  2006-09-05

I have a temporary fix in place using the {exp:query} module. But I’d still like to know what’s going on here.

Profile
 
 
Posted: 16 July 2008 02:22 PM   [ Ignore ]   [ # 2 ]
Administrator
Avatar
RankRankRankRank
Total Posts:  3356
Joined  2006-10-18

David,

I cannot duplicate this issue....
Which versions of Freeform and ExpressionEngine are you using? smile

Also, would you mind sharing your entire template? smile

 Signature 
Profile
 
 
Posted: 16 July 2008 03:19 PM   [ Ignore ]   [ # 3 ]
Newbie
Rank
Total Posts:  5
Joined  2006-09-05

Freeform 2.5.5 on EE 1.6.4

<!DOCTYPE html>
<
html>
<
head>
<
title>Volunteer Email Address List</title>
</
head>
<
body>
{if group_id == "1"}
<h2>Volunteer Email Address List</h2>
<
p>All volunteer email addresses submitted to the form on the site are listed here.</p>
{exp:freeform:entries form_name="convoy_volunteer_registration" dynamic="off"}
{email}
<br />
{/exp:freeform:entries}
{
/if}
</body>
</
html>

Profile
 
 
Posted: 16 July 2008 03:22 PM   [ Ignore ]   [ # 4 ]
Administrator
Avatar
RankRankRankRank
Total Posts:  3356
Joined  2006-10-18

Can you upgrade to Freeform 2.6.5? smile

 Signature 
Profile