Support

Account

Home Forums Backend Issues (wp-admin) More room for relationship picker

Solved

More room for relationship picker

  • In the backend, my relationship pickers show 6 choices. Is there a way to expand that to show, say 12 choices?

    Relationship Picker

  • 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');
Viewing 3 posts - 1 through 3 (of 3 total)

You must be logged in to reply to this topic.