-
Content Count
13 -
Joined
-
Last visited
Community Reputation
0 NeutralAbout Nanox Flow

-
Rank
Junior Member
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
Hi I would like to know how I can display product and domain pricing according to the user selected currency without use the WHMCS Data Feed that is slow when use many on same page, i want use inside the .tpl files not on external Can you please share the hooks for that Thanks
-
Hi I have tried in WHMCS 8.1 is not working, on external page im not getting the status <script type="text/javascript" src="client/status.php"></script>
-
Hi I have tried using this on version 8 but is not working, can you help me, i want check if user is logged or not using .php file to check it
-
Hi Is there a way to have E-mail Styling https://docs.whmcs.com/Email_Styling with multilanguage support / language override using the Translate Thanks
-
Hi How can i prevent template change from ?sytpl= so I can allow user to see only one style, not change it, i dont want rename twenty-one folder 🥶
-
Thanks, and how I can add a language translator?
-
Hi Thanks, but on this article i have only found example of 1 Language, i want for multiples at same time, can you send me the ready made hook Thanks
-
Hi I would like to know how I can change WHMCS Language name, i have multiples languages English, Portuguese-Br and so on, i want replace language name to country name, for e.g English to USA, Portugue-br to Brazil... Thanks
-
Hi Can you please help me with a Hook that switch the WHMCS Language according to Costumer Country, so it will get the Costumer Country or Country Code, and then change the WHMCS Language For example: If Country code is Brazil (BR) then Switch the WHMCS Language to Portuguese-br and soo on..., i want it for 5 different countrys and languages Thanks
-
Hi! How I can check WHMCS Session outsite WHMCS PAGE? I have an simple .php page that are located outside whmcs, the whmcs i have installed on subdomain, so I would like to know how on that .php file I can validate if the user have signed in on whmcs or not THanks
-
How I can create the session on external page? Thanks
-
Nanox Flow started following brian!
-
Hi! I'm using the domain pricing table whmcs feeds, all working fine, but i have one question, my website is multi lang, and I want that the feed come with language I have tried whmcs-patch.com/feeds/domainpricing.php?currency=1&language=portuguese-pt and not working Thanks
-
Hi! Im developing one Payment gateway module, but im facing one issue I cant get the client currency i have the file module.php on modules/gateway/ and on that file i have the Gateway Params and function module ($params) On the function module($params) i have the postfield and $currency params, here the module get the currency well The Postfields send to another page that are located on public_html/ gateway.php The problem that im facing in on that file gateway.php on that fle I have ?php use WHMCS\ClientArea; use WHMCS\Database\Capsule; use WHMCS\ModuleApi\ModuleApiCall as ModuleApiCall; use WHMCS\ModuleApi\GatewayVars as GatewayVars; define('CLIENTAREA', true); $baseDir = realpath(__DIR__); if (file_exists(__DIR__ . '/init.php')) { require_once __DIR__ . '/init.php'; } if (file_exists(__DIR__ . '/includes/gatewayfunctions.php')) { require_once __DIR__ . '/includes/gatewayfunctions.php'; } if (file_exists(__DIR__ . '/includes/invoicefunctions.php')) { require_once __DIR__ . '/includes/invoicefunctions.php'; global $whmcs; global $_LANG; On that file i want get the Client currency it, i have tried, but not sucess, on that file im able to get the $gatewayParams the paratemers fields of the Gateway $currency = $whmcs->get_req_var('currency'); $clientcurrency = $params['clientdetails']['currency']; Thanks