Start a conversation

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

You can add the 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; 
}
Choose files or drag and drop files
Helpful?
Yes
No