Meta Box
Support Forum
Support › General › Field file_upload change options
Hello, when using the file_upload or file field, the displayed files there are two Edit and remove options, is it possible to remove the edit option leaving only the remove option?
Hi, this can be done with CSS. Here is a trick to output quick CSS for the field without enqueuing new CSS file:
<?php add_filter( 'rwmb_meta_boxes', function( $meta_boxes ) { $meta_boxes[] = [ 'title' => 'Test Meta Box', 'fields' => [ [ 'type' => 'file_upload', 'id' => 'test', 'name' => 'File Upload', 'after' => '<style>.rwmb-edit-media { display: none; }</style>' ] ], ]; return $meta_boxes; } );
Great solution, but I think that in the future it would be great to have direct options as below
'options' => array( 'edit' => false, 'remove' => false, ),
it's just something I thought of improvement, thank you anyway.
Best regards, Araújo Luiz