acf-fancy-repeater-field icon indicating copy to clipboard operation
acf-fancy-repeater-field copied to clipboard

Option to change text input to image in label

Open VladNov opened this issue 6 years ago • 1 comments

Great add-on! Is it be possible to change the text from text input field to image in label? In case if a repeater does not have a text field.

VladNov avatar Mar 22 '18 07:03 VladNov

You could change some lines in /views/repeater-table.php

Starting from Line 11:

<strong>
  <?php
     $rowTitle = $row[$title_input_key];
     if ( is_numeric( $rowTitle ) && get_post( $rowTitle ) ) {
        $rowTitle = get_post( $rowTitle )->post_title;
     }
  ?>
  <a class="edit-field" title="<?php _e( 'Edit', 'acf_child_post_field' ); ?> <?php echo esc_attr( $field['button_label'] ); ?>" href="#"><?php echo $rowTitle; ?></a>        
</strong>

Just a little fix to output the name of a post instead of the ID. You can do the same thing for Attachments.

bfiessinger avatar Apr 25 '19 13:04 bfiessinger