Advanced Custom Fields Multilingual GPL v2.1.4.2 Original price was: 4.99$.Current price is: 2.99$.
Back to products
Advanced Custom Fields Options Page Addon v2.1.0 Original price was: 4.99$.Current price is: 2.99$.

Advanced Custom Fields Repeater Field Addon v2.1.0

Original price was: 4.99$.Current price is: 2.99$.

SKU: 8 7 5 1 10 Category:

RyanCV Resume WordPress Theme GPL v3.7.3

Original price was: 59.00$.Current price is: 3.49$.
RyanCV Resume WordPress Theme GPL is best suited for developers, designers, programmers, freelancers, writers, lawyers, musicians, trainers, photographers, or any other

Vehica Theme GPL v1.0.96 – Car Directory & Listing Latest Version

Original price was: 59.00$.Current price is: 3.49$.
Vehica Theme GPL– The most innovative Car Dealership WordPress Theme. It can be used to create a magnificent automotive website. This

Royal Elementor Addons GPL v1.5.7

Original price was: 59.00$.Current price is: 3.49$.
Royal Elementor Addons GPL -The only Elementor Addon you will ever need to build your website from Zero to Hero! Unlimited

Easy Digital Downloads Stripe Payment Gateway v3.0.2 Addon GPL

Original price was: 59.00$.Current price is: 3.49$.
Accept payments via all major credit and debit cards in your Easy Digital Downloads-based stores via Stripe Payment Gateway. This

The Advanced Custom Fields Repeater Field Addon allows you to create a set of sub fields which can be repeated again and again whilst editing content!

  • 1 Year Free Update.
  • Unlimited Domain Usage
  • Update Notifications On Email
  • Quick help through Email
  • Original GPL Product From the Developer

Settings

  • Sub Fields
    Defines the set of repeatable sub fields.
  • Collapsed
    Enables each row to be collapsed by specifying a single sub field to display.
  • Minimum Rows
    Sets a limit on how many rows of data are required.
  • Maximum Rows
    Sets a limit on how many rows of data are allowed.
  • Layout
    Defines the layout style of the appearance of the sub fields.
    Table: Sub fields are displayed in a table. Labels will appear in the table header.
    Block: Sub fields are displayed in blocks, one after the other.
    Row: Sub fields are displayed in a two column table. Labels will appear in the first column.
  • Button Label
    The text shown in the ‘Add Row’ button.

Template usage

The Repeater field will return an array of rows, where each row is an array containing sub field values.

For the best developer experience, we created some extra functions specifically for looping over rows and accessing sub field values. These are the have_rowsthe_rowget_sub_field, and the_sub_field functions.

 

Basic loop

This example demonstrates how to loop through a Repeater field and load a sub field value.

<?php

// Check rows exists.
if( have_rows('repeater_field_name') ):

    // Loop through rows.
    while( have_rows('repeater_field_name') ) : the_row();

        // Load sub field value.
        $sub_value = get_sub_field('sub_field');
        // Do something...

    // End loop.
    endwhile;

// No value.
else :
    // Do something...
endif;

Display a slider

This example demonstrates how to loop through a Repeater field and generate the HTML for a basic image slider.

<?php if( have_rows('slides') ): ?>
    <ul class="slides">
    <?php while( have_rows('slides') ): the_row(); 
        $image = get_sub_field('image');
        ?>
        <li>
            <?php echo wp_get_attachment_image( $image, 'full' ); ?>
            <p><?php the_sub_field('caption'); ?></p>
        </li>
    <?php endwhile; ?>
    </ul>
<?php endif; ?>

Foreach Loop

This example demonstrates how you can manually loop over a Repeater field value using a foreach loop.

<?php 
$rows = get_field('repeater_field_name');
if( $rows ) {
    echo '<ul class="slides">';
    foreach( $rows as $row ) {
        $image = $row['image'];
        echo '<li>';
            echo wp_get_attachment_image( $image, 'full' );
            echo wpautop( $row['caption'] );
        echo '</li>';
    }
    echo '</ul>';
}

Nested loops

This example demonstrates how to loop through a nested Repeater field and load a sub-sub field value.

<?php
/**
 * Field Structure:
 *
 * - parent_repeater (Repeater)
 *   - parent_title (Text)
 *   - child_repeater (Repeater)
 *     - child_title (Text)
 */
if( have_rows('parent_repeater') ):
    while( have_rows('parent_repeater') ) : the_row();

        // Get parent value.
        $parent_title = get_sub_field('parent_title');

        // Loop over sub repeater rows.
        if( have_rows('child_repeater') ):
            while( have_rows('child_repeater') ) : the_row();

                // Get sub value.
                $child_title = get_sub_field('child_title');

            endwhile;
        endif;
    endwhile;
endif;

Accesing first row values

This example demonstrates how to load a sub field value from the first row of a Repeater field.

<?php
$rows = get_field('repeater_field_name' );
if( $rows ) {
    $first_row = $rows[0];
    $first_row_title = $first_row['title'];
    // Do something...
}

You may also use the break statement within a have_rows() loop to step out at any time.

<?php 
if( have_rows('repeater_field_name') ) {
    while( have_rows('repeater_field_name') ) {
        the_row();
        $first_row_title = get_sub_field('title');
        // Do something...
        break;
    }
}

Accesing random row values

This example demonstrates how to load a sub field value from a random row of a Repeater field.

<?php
$rows = get_field('repeater_field_name' );
if( $rows ) {
    $index = array_rand( $rows );
    $rand_row = $rows[ $index ];
    $rand_row_title = $rand_row['title'];
    // Do something...
}

Reviews

There are no reviews yet.

Be the first to review “Advanced Custom Fields Repeater Field Addon v2.1.0”

Your email address will not be published. Required fields are marked *

Digital Products - Delivery Fast and Reliable

Our shipping system is a digital product delivery platform that allows you to instantly download your purchased items directly from your dashboard. All products available on our platform are licensed under the GPL (General Public License), ensuring flexibility and freedom to use, modify, and distribute the software as needed.

If you notice that a new update for a product is available but has not yet been reflected in our system, please don’t hesitate to contact us. We are committed to providing you with the latest versions and ensuring a seamless experience.

  1. Instant Download System:

    • When you purchase a digital product, it is immediately available for download through your dashboard. This eliminates waiting times and provides instant access to your files.

  2. GPL Licensing:

    • All products on the platform are GPL-licensed, meaning they are open-source. You have the freedom to use, modify, and share the software as per the terms of the GPL license.

  3. Update Notifications:

    • While we strive to keep our system updated with the latest versions of products, there may be rare instances where an update is not immediately reflected. In such cases, we encourage users to contact us so we can address the issue promptly.

  4. Customer Support:

    • Our team is available to assist with any questions or concerns regarding product updates, licensing, or technical issues. We aim to provide a smooth and reliable experience for all users.

This system is designed to ensure convenience, transparency, and accessibility for our customers while adhering to open-source principles.

MAECENAS IACULIS

Vestibulum curae torquent diam diam commodo parturient penatibus nunc dui adipiscing convallis bulum parturient suspendisse parturient a.Parturient in parturient scelerisque nibh lectus quam a natoque adipiscing a vestibulum hendrerit et pharetra fames nunc natoque dui.

ADIPISCING CONVALLIS BULUM

  • Vestibulum penatibus nunc dui adipiscing convallis bulum parturient suspendisse.
  • Abitur parturient praesent lectus quam a natoque adipiscing a vestibulum hendre.
  • Diam parturient dictumst parturient scelerisque nibh lectus.

Scelerisque adipiscing bibendum sem vestibulum et in a a a purus lectus faucibus lobortis tincidunt purus lectus nisl class eros.Condimentum a et ullamcorper dictumst mus et tristique elementum nam inceptos hac parturient scelerisque vestibulum amet elit ut volutpat.

RELATED PRODUCTS

Gillion Theme GPL v4.12 – Multi-Concept Blog Magazine & Shop WordPress Theme

Original price was: 59.00$.Current price is: 3.49$.
Gillion Theme GPL has been pre-made for you with 15+ high-quality fully functioning website demos that are ready to be customized

Blogar Theme GPL v1.3.1 – Blog Magazine WordPress Website

Original price was: 59.00$.Current price is: 3.49$.
Blogar Theme GPL is a premium and trendy blog, Magazine, and Blog WordPress Theme with super flexibility and a fully responsive design. Unlimited

Atlas Theme GPL v2.0.4 – Creative Blog & News WordPress Theme

Original price was: 59.00$.Current price is: 3.49$.
Atlas Theme GPL – Atlas is a WordPress theme with a compact and modern design. With a tight structure, the elements

Voice Theme GPL v3.0.3 – Create News & Magazine WP Websites

Original price was: 59.00$.Current price is: 3.49$.
Voice Theme GPL was created with news, magazine, and editorial websites in mind. It comes packed with features including WooCommerce