Hi April,
You can try to add a new currency but without adding a label. try to add the code below to functions.php file of your theme
add_filter( 'mprm_currencies', 'add_my_currency' );
function add_my_currency( $currencies ) {
$currencies['TEST'] = __( 'Currency name', 'mprm' );
return $currencies;
}
Then go to Restaurant Menu>Settings>Currency Settings and scroll the list of labels to the bottom. There you will find added currency. Select it and save changes.
Best regards,
John