Support

Account

Home Forums Feature Requests Taxonomy Radio Button Layout Options

Solved

Taxonomy Radio Button Layout Options

  • The Radio button field has a Layout option to choose if you want the buttons displayed vertically or horizontally, but if you choose the Radio button appearance for the Taxonomy field you don’t get the option to have them display vertical/horizontal. It would be nice to have that option in other fields where you can choose radio buttons for the appearance.

  • Hi @bgallagh3r

    Good idea, I will pass it along to the developer. Thanks for the suggestion.

    In the meantime, want a workaround?

    Try this code:

    
    function my_custom_admin_styles() {
      echo '<style>.acf-field-59cb76248bc31 ul li { display:inline; }</style>';
    }
    add_action( 'admin_head', 'my_custom_admin_styles' );
    

    You will need to use your field key of course. You can expose the “key” from Screen Options in the Edit Fields area.

    The code can go in a Custom Plugin or functions theme file.

    Hope that helps, and thanks again!

  • Thanks Keith!

    That’s pretty much what I’m doing right now.

Viewing 3 posts - 1 through 3 (of 3 total)

The topic ‘Taxonomy Radio Button Layout Options’ is closed to new replies.