Add Company Name to Print Out

We are a business to business site, so of course companies order from our site.



We have the “Company” field setup as profile field. This field shows up in the back end, but NOT in the order print out.



Is there a way to add this field to the order print out?

edit : /skins/your skin…/mail/orders/invoice.tpl



put before :


{if $profields_c.firstname}{$order_info.firstname} {/if}{if $profields_c.lastname}{$order_info.lastname}{/if}




this code :

{if $profields_c.company}{$order_info.company} {/if}

Thanks . . . I did a slight modification just in case a consumer orders instead of a company.



{if $profields_c.company}

{$order_info.company}

{/if}