WordPress Tutorial: Flutter Duplicate Fields

Creating duplicate fields through Freshout's WordPress plugin, Flutter, has been a little on the mysterious side up to this point. No documentation seems to exist for this feature with the exception of simply repeating a php get_post_meta tag for each Custom Field. The true beauty of the duplicate fields lies within the ability to utilize a single php function to echo all fields as they are created on the fly.

Create a Duplicate Field

I set up a Custom Write Panel Page titled "Upcoming Events". Within this page is a group and the option for duplication is checked. Let's title this group "Event" and create a Custom Write Fields like so:

Custom Field 1 Name: event-title Label: Event Title
Custom Field 2 Name: event-date Label: Event Date

For example purposes, let's say I'm giving a speech in California on the 5th of July 2011. The first text field, "Event Title", might be filled in as "IT Security World 2011" and the second field might be a text field showing the date of "July 5th 2011". Initially echoing theses fields is straightforward:

<?php echo get_post_meta($post->ID, 'event-title', $single=true) ?>
<?php echo get_post_meta($post->ID, 'event-date', $single=true) ?>

If echoing individual, duplicate fields within multiple groups:

<?php echo get('event-title', 1); ?> // Duplicate Group 1, Field 1
<?php echo get('event-title', 2); ?> // Duplicate Group 2, Field 1

The above code works perfectly until the time comes to add in a second or third event that we would like to automate. Keep in mind we are simplifying the situation and the above is assuming that you would not be archiving the events, but merely wanting to show the latest five or six at any given time. This is all well and good until you start clicking that duplicate button and you realize the second or third event doesn't actually show because the new fields created must have their own individual names in order to exist, something such as "Event1".

After looking through the Flutter documentation we find a few functions the seem as though they should deliver what we need: getFieldDuplicates ($fieldName, $groupIndex) and getFieldDuplicates ($fieldName, $groupIndex). Unfortunately, these only return true values and are not what we are really looking for. What we want is the ability to click the duplicate button and have a single function return the values from the first event group and the next event group and so on.

Not much help has been handed down through the Flutter forums and it seems if anyone does know how to work this, they have been doing a great job of keeping it a secret up to this point. I found only one person willing to shed any kind of light on the matter and as grateful as I am, this was still not enough. Finally through shear frustration I took it upon myself to solve the problem through php. Albert Yarusso was kind enough to assist me in this project. Below is the php function we compiled to display duplicated groups.

<?php $my_query = new WP_Query('page_id=1');
while ($my_query->have_posts()) : $my_query->the_post();
$do_not_duplicate = $post->ID; ?>

<?php $total = getGroupDuplicates('event-title');?>
<?php for($i = 1; $i < $total+1; $i++);?>
<?php echo "<div class='event-wrap'>";
echo "<h2>" .get('event-title',$i,1). "</h2>";
echo get('event-date',$i,1);
echo "</div>"; ?>

<?php endfor;?>
<?php endwhile; ?>

Line 1-3:

To begin, we need to create a WordPress query using our page_id number where the duplicate Custom Fields are located. This could just as easily be a post id number with duplicate fields. The first three Lines should be understood as a basic concept from WordPress. If these are not understood, please refer to the WordPress codex on Loops. NOTE: If using this code on a page such as single.php, use the basic loop:. The example is necessary only when calling on a specific post or page.

<?php $my_query = new WP_Query('page_id=1');

Line 5:

NOTE: This is not the name of the entire group, but the name of the first duplicate field. In this case, these are duplicate groups and not duplicate Custom Fields. This is because we have set the group to duplicate and not the individual fields.

<?php $total = getGroupDuplicates('event-title');?>

Line 6:

Start a count for each duplicate group in an effort to process them and add them incrementally.

<?php for($i = 1; $i < $total+1; $i++);?>

Line 7:

Insert a simple PHP echo to add a bit of CSS styling for our events. This is only included to demonstrate the ability to add in CSS styling. Any CSS styles are housed within the stylesheet.

<?php echo "<div class='event-wrap'>";<

Line 8:

Here we are inserting a CSS H2 style tag to the event title to give it a better look, then echo the event titles incrementally and end the H2 tag.

echo "<h2>" .get('event-title',$i,1). "</h2>";

Line 9:

Add the event date, which again is done incrementally.

echo get('event-date',$i,1);

Line 10:

It is then important to end the div tag which opened on Line 7.

echo "</div>"; ?>

Line 12:

Then end the "for" function.

<?php endfor;?>

Line 13:

Lastly, don't forget to close up the WordPress query to finalize the loop.

Now when adding additional duplicate groups on the post or page, the code recognizes that there are more than one group and subsequently echo them all. With a few tries you should have this up and running for any manner of duplicate groups or fields.

<?php endwhile; ?>
Dale Crum
Dale Crum
Owner / Creative Director at Doc4 Design

Want to Hear More?

Need a cost estimate for a new project? Or just want to know what options are available? Get the answers you need by calling us at (479) 202-8634, or drop us a line using the form.