hi,

was searching for settings for "other" payment method in payment pack module and just found this function:

function uc_payment_method_other_form($form_state, $order) {
  $form['pm_other_description'] = array(
    '#type' => 'textfield',
    '#size' => 32,
    '#maxlength' => 64,
    '#default_value' => $order->payment_details['description'],
  );

  return $form;
}

but i cant find this form in admin... but it's exactly what i need (setting a description for payment method "other").

maybe i missed something.

regards

Comments

rszrama’s picture

Assigned: Unassigned » rszrama
rszrama’s picture

Status: Active » Closed (works as designed)

That form is used when "Other" is specified on the order edit form. It lets the administrator enter in what the "Other" payment was. It's not for changing the text on checkout.

joelstein’s picture

I actually think it does make sense to change the label of the "other" payment method. I submitted a patch to Ubercart which makes it possible to change the label, so you could easily change it to whatever you want: #865136: Ability to rename "Other" payment method.

Give it a shot, and if it makes sense, please vote on it so it gets implemented in Ubercart. Thanks!

scott m. sanders’s picture

Subscribing to this as it relates to #865136.