WPPizza – A Restaurant Plugin for WordPress › Support › Feature Requests › Suggesion for the danish currency in wppizza
- AuthorPosts
- 9 August, 2015 at 1:42 am #11448
This is just a suggestion and i’m sure all your Dansih customer will benefit from this.
The danish currency is shown as “kr” in the wppizza but if any dansih customer want to use epay plugin and want to have credit card payment on there website thy need to change that to “DKK” and this is mandatory to be accepted for credit card payment in Denmark, the currency must be in “DKK” at the end and not “kr”. therefor i suggest that you change it so it is default in DKK in the future.
Thanks
Mustafa9 August, 2015 at 2:04 am #11449ehem, the currency code submitted to any payment gateway will be DKK. it’s only the display that will show as kr. same goes for £ for example. depending on country it will be submitted as GBR for UK, EGP for Egypt , etc
9 August, 2015 at 2:16 am #11450essentially , what you are suggesting is already the case (otherwise the epay dk gateway would not work anyway)
9 August, 2015 at 2:49 am #11451I meant also the display on frontend, i know the code will work.
To be accepted for credit card in dk the agency that accept the application will see the website in frontend and thy demand that your currency that is shown to be in DKK.
9 August, 2015 at 3:04 am #11452i question their reasons, but if you must , there’s a filter you can use “wppizza_filter_currencies” like so
add_filter('wppizza_filter_currencies','myprefix_currency_filter'); function myprefix_currency_filter(currencies){ $currencies['DKK']='DKK'; return $currencies; }
not tested but should work
- AuthorPosts
- The topic ‘Suggesion for the danish currency in wppizza’ is closed to new replies.