Hi Neil,
You can convert the format using PHP date()
function. Assuming your time has format "04:20 PM", and you want to convert to "16:20", here is the code:
$time = rwmb_meta( 'field_id' ); // 04:20 PM
echo date( 'H:i', strtotime( $time ) ); // 16:20
See more answers here.