Free Tax on orders over ₹599 Rupees or $9.99 Dollars Teams & Conditions
- 97%

Advance Custom Fields Repeater Field Addon 2.1.0 Plugin WordPress

329.00

Product is rated as #13 in category Add-On
Features9.7
Pricing9.5
User Friendly9.5
Support9.5
  • You’ll Receive the Original Product with GPL License!
  • Exact Same Files Being Distributed By Developer Advanced Custom Fields
  • We Purchase And Download From Original Authors
  • This product is Pre-Activated for your domain
  • 100% Free From Virus / Malicious Script / Backdoor
  • Standard Support From Our In-House Experts(Free/Paid)
  • Product Version: v2.1.0
  • Previous versions available: on request
  • Use On Unlimited Own & Client Websites
  • 1 Year Of Free Updates
  • Product Last Updated: 02 Jan 2020
  • Developer: Advanced Custom Fields
  • Demo Link: https://www.advancedcustomfields.com/add-ons/repeater-field/

329.00

(-97%)
Add to wishlistAdded to wishlistRemoved from wishlist 0

Ansefy GPL DownloadAdvance Custom Fields Repeater Field Add-on 2.1.0 allows you to create a set of sub fields which can be repeated again and again whilst editing content. Any type of field can be added as a sub field which allows you to create and manage very customized data with ease.  You can download the Advance Custom Fields Repeater Field Addon 2.1.0 ACF Pro 5.9.5 plugin for wordpress by codecanyon with the gpl license key free and non nulled free or non-crack free latest version file.

The Repeater field provides a neat solution for repeating content – think slides, team members, CTA tiles and alike.

This field type acts as a parent to a set of subfields that can be repeated again and again. What makes this field type so special is its versatility. Any kind of field can be used within a Repeater, and there are no limits to the number of repeats either (👨‍💻 unless defined in the field settings).

Screenshots

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.

The Repeater field provides a neat solution for repeating content – think slides, team members, CTA tiles and alike.

This field type acts as a parent to a set of sub fields which can be repeated again and again. What makes this field type so special is its versatility. Any kind of field can be used within a Repeater, and there are no limits to the number of repeats either (👨‍💻 unless defined in the field settings).

Screenshots

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. Advance Custom Fields Repeater Field 2.1.0 plugin download nulled free with gpl license

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...
}
9.7Expert Score
Advance Custom Fields Repeater Field Addon 2.1.0
The repeater field allows you to create a set of sub fields which can be repeated again and again whilst editing content. Any type of field can be added as a sub field which allows you to create and manage very customized data with ease.
Features
9.7
Pricing
9.5
User Friendly
9.5
Support
9.5

OUR FEATURES

☑️Affordable Prices:
Our prices are much lower than developers. You can purchase a premium product at an affordable price!
☑️100% Original Files:
100% clean original files without implemented advertising, viruses, or malicious code.
☑️Frequent Updates:
We offer lifetime updates and we stay tuned and regularly lay out a fresh version of themes and plugins.
☑️Direct Download Links:
You download the product directly from our website without any waiting and advertising!
☑️100% Legal with GPL licensed:
All digital products presented on the website are released under GNU General Public License.
☑️Unlimited Domain Use:
The plugins and themes are GPL licensed so you can use them as often as you like on as many sites as you like.

READ BEFORE PURCHASE

  • Before making a purchase, please read the Terms and Conditions & Refund Policy.
  • If you have any questions, please first read the FAQ.
  • If you haven’t found the answer to your question, please contact us, we will respond asap.
  • You can download the product after the purchase by a direct link on your Downloads sections.
  • Please note that any digital products presented on the website do not contain malicious code, viruses, or advertising. We buy the original files from the developers. We do not sell any products downloaded from other sites.

UPDATES & SUPPORT

Updates

  • We offer frequent updates for one year from the date of purchase. After this period, you have to purchase the item again to receive further updates, we also offer lifetime updates as a second option.
  • We regularly update products as soon as we are notified about an update, we go and download it from the author and update it on our site, but In case the current version of the product is not the latest, You can request an update for the product from the form below.
  • We send regular emails advising when products have been updated so please be sure to provide an active email address when you sign up.

Support

  • Our support team is available 24/7, if you have any questions or need help in installing or configuring digital products purchased on the website, please don’t hesitate to contact us.
  • Please note that we are not developers of the provided products, so our technical support capabilities are limited. We do not change product functionality and do not fix developer bugs.

For more information please read FAQ & About Us.

Request This Product Update – [Fill Form]

HOW TO UPGRADE?

How do I upgrade a plugin?

First, install and activate this plugin – Easy Theme and Plugin Upgrades,
then follow the below steps:

  • Download the latest zip file for your plugin.
  • Log into your WordPress site.
  • Go to Plugins > Add New.
  • Click the “Upload Plugin” button at the top of the page.
  • Select the zip file with the new plugin version to install.
  • Click the “Install Now” button.

How do I upgrade a theme?

First, install and activate this plugin – Easy Theme and Plugin Upgrades,
then follow the below steps:

  • Download the latest zip file for your theme.
  • Log into your WordPress site.
  • Go to Appearance > Themes.
  • Click the “Add New” button at the top of the page.
  • Click the “Upload Theme” button at the top of the page.
  • Select the zip file with the new theme version to install.
  • Click the “Install Now” button.

How to fix the “style.css missing” error while uploading themes?

A common issue that can occur with users new to installing WordPress themes is a “Broken theme and/or stylesheets missing” error message being displayed when trying to upload or activate the theme.

This is because the theme download package on ThemeForest includes additional files to the theme such as the documentation, license, etc.

To solve this simply unzip the theme package you downloaded from Ansefy GPL and upload the themename.zip file which is included (with the file being the name of the theme).

SUBCRIBE TO US

Do you want to create and manage a high-quality website?

Subscribe & Get Access to All Premium WordPress Themes, Shopify, Magento, Drupal, Opencart, Prestashop, WooCommerce Themes, Modules, Scripts, Add-on, Plugins, Premium Extensions, Premium Themes, Plugins or much more at Affordable Prices, With Original Products, Free Updates & Unlimited Domain Use. Know More

Want to get download this plugin and theme for free. Join and Subscribe immediately with ansefy GPL via sending one email to us.

User Reviews

0.0 out of 5
0
0
0
0
0
Write a review

There are no reviews yet.

Be the first to review “Advance Custom Fields Repeater Field Addon 2.1.0 Plugin WordPress”

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

Advance Custom Fields Repeater Field Addon 2.1.0 Plugin WordPress
Advance Custom Fields Repeater Field Addon 2.1.0 Plugin WordPress

329.00

Ansefy GPL
Logo
Shopping cart