// Home Client Section meta box
$client= new_cmb2_box( array(
‘title’ => ‘ Client Logo Upload Fields’,
‘id’ => ‘client_fields’,
‘object_types’ => array(‘agro-client’)
));
$client-> add_field( array(
‘name’ => ‘Upload Client Logo’,
‘id’ => ‘_client-logo’,
‘type’ => ‘file’,
‘options’ => array(
‘url’ => false, // Hide the text input for the url
),
‘text’ => array(
‘add_upload_file_text’ => ‘Add or Upload Logo’ // Change upload button text. Default: “Add or Upload File”
),
));