Backend Euro Front End $

Is there an easy way to show prices in front end in $ while base price would remain euro?

Or show to particular areas $ and europe euro ?

To configure CS-Cart in this way, just change status of USD to Hidden

Probably you understood me wrong.

I want to load products, have dashboard in eur currency, while in front end when customers hit store priced to be seen in $ as default unless they want to change it to GBP or EUR.

To configure CS-Cart in this way, just change status of USD to Hidden

OK. In this case you should correct the fn_init_currency function (app/functions/fn.init.php)

E.g. replace

foreach ($currencies as $v) {
            if ($v['is_primary'] == 'Y') {
                $secondary_currency = $v['currency_code'];
                break;
            }
        }

with

if (AREA == 'C') {
    $secondary_currency = 'USD';
} else {
foreach ($currencies as $v) {
            if ($v['is_primary'] == 'Y') {
                $secondary_currency = $v['currency_code'];
                break;
            }
        }
}

(!) Not tested

This code will work on first visit when the currency is not saved in the session