Orders Management Page Redesign

Hello,

in Orders management page (xxx.php?dispatch=orders.manage) there are thsese columns:

Select | ID | Status | Date | Customer | Phone | Total order amount

Customer shown as @ Surname Name

How can I possibly show Companys name instead of Customers name if profile has Companys name filed, if not display Customers name as it is now?

design/backend/templates/views/orders/manage.tpl

Try to replace:

{if $o.user_id}{/if}{$o.lastname} {$o.firstname}{if $o.user_id}{/if}

with:

{if $o.user_id}{/if}{if $o.company}{$o.company}{else}{$o.lastname} {$o.firstname}{/if}{if $o.user_id}{/if} 

Then clear cache and check the result

(!) Not tested

design/backend/templates/views/orders/manage.tpl

Try to replace:

{if $o.user_id}{/if}{$o.lastname} {$o.firstname}{if $o.user_id}{/if}

with:

{if $o.user_id}{/if}{if $o.company}{$o.company}{else}{$o.lastname} {$o.firstname}{/if}{if $o.user_id}{/if} 

Then clear cache and check the result

(!) Not tested

Thanks, but its not working :(

Thanks, but its not working :(

Please PM me temporary FTP access, we will check. The mentioned solution should work

Please PM me temporary FTP access, we will check. The mentioned solution should work

I just send you logins

I just send you logins

We have made necessary changes