In the backend, my relationship pickers show 6 choices. Is there a way to expand that to show, say 12 choices?
If you add custom CSS to the admin of your site you can adjust the height of .acf-ralationship .list
Thanks!
For anyone else following this, I couldn’t just add that CSS to a style sheet. I needed to create a snippet like this:
function my_acf_admin_head() {
?>
<style type="text/css">
.acf-relationship .list {height: 340px;}
</style>
<?php
}
add_action('acf/input/admin_head', 'my_acf_admin_head');