Jump to content

Restore default currencies in BO


Recommended Posts

Execute the following SQL query on your database using phpMyAdmin to reset your currencies to the default ones:

TRUNCATE TABLE `ps_currency`;
TRUNCATE TABLE `ps_module_currency`;
INSERT INTO `ps_currency` (name, iso_code, sign, blank, conversion_rate, format, deleted) VALUES
('Euro', 'EUR', '€', 1, 1, 2, 0), ('Dollar', 'USD', '$', 0, 1.47, 1, 0), ('Pound', 'GBP', '£', 0, 0.8, 1, 0);
INSERT INTO `ps_module_currency` (`id_module`, `id_currency`) VALUES (3, 1),(3, 2),(3, 3),(4, -2),(6, 1),(6, 2),(6, 3);



Change ps_ to your database prefix.

  • Like 1
Link to comment
Share on other sites

  • 4 years later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...