heiko Posted April 24, 2020 Share Posted April 24, 2020 Good day Added a new hook as per below: <?php use WHMCS\Session; add_hook('ClientAreaPageCart', 1, function($vars) { // Provide your new default currency ID $currencyId = 2; if (!Session::get('uid') && !Session::get('currency')) { Session::set('currency', $currencyId); } }); The default currency only changes when I press F5 on the browser. Can you please assist me what I am missing to force the hook to load? Thank you Heiko 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.