ctapix Posted September 23, 2020 Share Posted September 23, 2020 hello i put setting in currency USD, and after put CLP (chilean peso) i need when people inside my website only see CLP no USD. I need and put getway payment only in chilean pesos CLP. this is necesary for my country. i dont need sell in USD. . go to currency put CLP, make all information show in internet and continue show only USD. how can make It??? 0 Quote Link to comment Share on other sites More sharing options...
brian! Posted September 24, 2020 Share Posted September 24, 2020 On 23/09/2020 at 04:29, ctapix said: how can make It??? if you don't want to sell domains/products in USD, then the simplest way is not to add pricing for them in USD.... or instead of adding CLP as a separate currency, you could have renamed USD to CLP and only have one currency in your install. if you could remove/disable USD pricing for product/domains (from admin settings), use an action hook / CSS to hide the currency sidebar and add ¤cy=2 to product links on your main website, then that would add the product in CLP pricing. <?php use WHMCS\View\Menu\Item as MenuItem; add_hook('ClientAreaSecondarySidebar', 1, function (MenuItem $secondarySidebar) { if (!is_null($secondarySidebar->getChild('Choose Currency'))) { $secondarySidebar->removeChild('Choose Currency'); } }); 0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.