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
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.