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 | + | 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 09:54, 8 May 2009
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");