Difference between revisions of "SKIP COUNTRIES"

From TMM Wiki
Jump to navigationJump to search
(New page: {{NATS4 Manual | show_extras_section = true }} In order to remove countries countries from the drop down no the join forms you need to create $config['SKIP_COUNTRIES'] array in the nats/i...)
 
Line 3: Line 3:
 
}}
 
}}
  
In order to remove countries countries from the drop down no the join forms you need to create $config['SKIP_COUNTRIES'] array in the nats/includes/config_override.php file.  The values need to be 2 letter country codes.  The following example removes Afghanistan and Albania from the list
+
In order to remove countries countries from the drop down on the join forms you need to create $config['SKIP_COUNTRIES'] array in the nats/includes/config_override.php file.  The values need to be 2 letter country codes.  The following example removes Afghanistan and Albania from the list
  
 
$config['SKIP_COUNTRIES'] = Array(
 
$config['SKIP_COUNTRIES'] = Array(
 
   "0" => "AF",
 
   "0" => "AF",
 
   "1" => "AL");
 
   "1" => "AL");

Revision as of 10:54, 8 May 2009

NATS 4
Members Admin
The Members Admin
View Member Details
Add Member
MySQL Auth
Mod Authn DB
Multisite Access
Member Logging
Member Password Retrieval
OpenID Connect
Mod Auth OpenIDC
ID Numbers
NATS Extras
TMMid
Gallery Builder Module
CAPTCHA
Remote Affiliate Authentication
Build Your Own Anything Module
Shopping Cart Sales
Moving Tours, Members' Area, and Galleries
Admin Areas
Extended Sales
NATS Code Wordpress Plugin
Error_message_display
ATVOD Verification Process

In order to remove countries countries from the drop down on the join forms you need to create $config['SKIP_COUNTRIES'] array in the nats/includes/config_override.php file. The values need to be 2 letter country codes. The following example removes Afghanistan and Albania from the list

$config['SKIP_COUNTRIES'] = Array(

 "0" => "AF",
 "1" => "AL");