I cannot find the area for changing the billing option shown in the attached. Please advise..
I cannot find the area for changing the billing option shown in the attached. Please advise..
A particular template is responsible for displaying the necessary fields. If you would like to edit them some code changes are required. The file is need is skins/[YOUR_THEME]/customer/views/orders/components/payments/po.tpl
A particular template is responsible for displaying the necessary fields. If you would like to edit them some code changes are required. The file is need is skins/[YOUR_THEME]/customer/views/orders/components/payments/po.tpl
Great, thank you! Where do I find the description text for it?
I see this code:
But, I cannot find the file for the description code reference..
What kind of changes do you want to apply?
What kind of changes do you want to apply?
I want to add a field that says: "FedEx/UPS Number" and a field that says "FedEx/UPS Billing Zip Code" under Purchase Orders..
Then just add the appropriate label/input tags using the names payment_info[shipping_number] and payment_info[bill_zip] then they will display on the payment area of your order. You should add language variables for 'shipping_number' and 'bill_zip' so that you have reader-friendly names shown as the label in the order.details page.
Then just add the appropriate label/input tags using the names payment_info[shipping_number] and payment_info[bill_zip] then they will display on the payment area of your order. You should add language variables for 'shipping_number' and 'bill_zip' so that you have reader-friendly names shown as the label in the order.details page.
Thank you.. Where do I add that verbiage and what code do I use for that?
design/themes/YOUR_THEME/templates/views/orders/components/payments/po.tpl
Add to the end:
{__("bill_zip")}:{__("shipping_number")}:
Then add bill_zip and shipping_number language variable in the admin panel and clear cache