Home › Forums › General Issues › Many of the same clone in another set of fields › Reply To: Many of the same clone in another set of fields
No, what I am saying is that you need to treat the testimonials clone as a group. There is a difference when you use this layout in the clone field.
This is your code
if (have_rows('testimonials')) {
while (have_rows('testimonials')) {
the_row();
echo get_sub_field('title');
}
}
With the group layout on the clone your code should look something like this
if (have_rows('testimonials')) {
while (have_rows('testimonials')) {
the_row();
// add loop for clone field
// this will be an issue because your clone field has the same name as it's parent
// you will need to change the field name
if (have_rows('testimonials')) {
while (have_rows('testimonials')) {
the_row();
echo get_sub_field('title');
}
}
}
}
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!
Accordions are a great way to group related information while allowing users to interactively show and hide content. In this video, Damon Cook goes in-depth on how to create an accessible accordion block using ACF PRO’s Repeater field.https://t.co/RXT0g25akN
— Advanced Custom Fields (@wp_acf) March 2, 2023
© 2023 Advanced Custom Fields.
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 Cookie Policy. If you continue to use this site, you consent to our use of cookies.