Home › Forums › Add-ons › Repeater Field › Repeater field to create table › Reply To: Repeater field to create table
@chrisdavies71 It appears that you have the same repeater field on multiple terms and they have the same values. What you need to do is check to see if you’ve already shown that value from a previous term and skip it. To do this you need to store the values as you show them and then check new values against the list.
This is a simple example:
// create a variable to hold values shown
$already_shown = array();
while (have_rows('pay_deal_dates', 'term_'.$paydeals->term_id )) {
the_row();
$payrate = get_sub_field('rate');
if (in_array($payrate, $already_shown)) {
// skip this one
continue;
}
// code to display row here
}
@luizhscotta I can’t read you’re code the way is is formatted. You should also start a new topic and explain in more detail what you’re specific problem in, maybe someone will help you.
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.