/**
  * Update values.
  *
  * Retreive and render the new condition values according to the condition key.
  *
  * @since 1.0.0
  */
 public function wcasv_update_condition_value()
 {
     check_ajax_referer('wcasv-ajax-nonce', 'nonce');
     wcasv_condition_values($_POST['id'], $_POST['group'], $_POST['condition']);
     die;
 }
 /**
  * Value dropdown.
  *
  * Render and load value dropdown.
  *
  * @since 1.0.0
  */
 public function condition_values()
 {
     wcasv_condition_values($this->id, $this->group, $this->condition, $this->value);
 }