Viewing 1 replies (of 1 total)
  • Hi @teeboy4real,

    I am not the plugin author – but may be able to help.

    This plugin doesn’t have any currency associated with it. The only time it is mentioned is in the placeholder:

    /**
    * Adds a text field to the Job Listing wp-admin meta box named “Salary”
    **/
    function gma_wpjmef_admin_add_salary_field( $fields ) {
      
      $fields['_job_salary'] = array(
        'label'       => __( 'Salary', 'wpjm-extra-fields' ),
        'type'        => 'text',
        'placeholder' => 'e.g. USD$ 20.000',
        'description' => ''
      );
    
      return $fields;
    
    }

    & you can replace USD$ 20.000 with whatever you like. eg. € 50,000

Viewing 1 replies (of 1 total)
  • The topic ‘Change currency value’ is closed to new replies.