Support

Account

Home Forums Add-ons Repeater Field Repeater field wp-admin layout Reply To: Repeater field wp-admin layout

  • Thanks presta

    If anyone comes across this problem, it is caused by a conflict with the Visual Composer plugin – there is some over zealous CSS within Visual Composer so it may not be “fixed” by ACF.

    You can also do the following to avoid hacking ACF – inside functions.php, add the following:

    add_action('admin_head', 'my_fix');
    
    function my_fix() {
      echo '<style>
        .acf-input-table tr.row:before{ display: none !important; }
        .acf-input-table tr.row:after{ display: none !important; }
      </style>';
    }

    Cheers

    Emile