In the template for select_payment.php, I'm trying to customize the look of the payment options but the array that holds each option doesn't provide any "fields", just the raw output from the plugins...
For instance:
[2] => Array
(
- => {radio button}InvoiceIf you choose to be invoiced we will review your invoice first before approving your selected items. If they are are items for download they will be available for download after we are able to review the invoice.
)
)
I'm trying to find what function I would need to make changes to, to get a result more like this:
[2] => Array
(
[name] => Invoice
[form] => {radio button}
[description] => If you choose to be invoiced we will review your invoice first before approving your selected items. If they are are items for download they will be available for download after we are able to review the invoice.
)
)
Anybody know what php file I could edit to make these changes?