Support

Account

Home Forums Add-ons Repeater Field Problem with taxonomies add-on repeater

Helping

Problem with taxonomies add-on repeater

  • I wonder if you could support me to show and record the field of services is of type taxonomy please.

    I’m using the repeater plugin

  • Hi @michael870917,

    Thanks for the post.

    For a single taxonomy term object nested within a Repeater, you would require the following code in your template:

    <?php
    
    // check if the repeater field has rows of data
    if( have_rows('repeater_field_name') ):
    
     	// loop through the rows of data
        while ( have_rows('repeater_field_name') ) : the_row();
    
            // get the term
            $term = get_sub_field('taxonomy_field_name');
            if($term){
            echo $term->name;
            echo $term->description;
            }
            endif;
    
        endwhile;
    
    else :
    
        // no rows found
    
    endif;
    
    ?>
Viewing 2 posts - 1 through 2 (of 2 total)

The topic ‘Problem with taxonomies add-on repeater’ is closed to new replies.