Support

Account

Home Forums Feature Requests Taxonomy Radio Button Layout Options Reply To: Taxonomy Radio Button Layout Options

  • 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!