How do I add South African Rands (ZAR) to WPJobBoard?

How do I add South African Rand (ZAR) to WPJobBoard?

You can add South African Rand to the currencies list by adding the code below in your theme functions.php file.

To check your currently active theme, go to Appearances.

add_filter("wpjb_list_currency", "my_new_currency"); 

function my_new_currency($all) { 
   $all[710] = array( 
  "code" => "ZAR",  
  "name" => "South African Rand", 
   "symbol" => "R", 
    "decimal" => 2 
  ); 
  return $all; 
}