Shorten Email Field

Anyone tell me how I can shorten the amount of characters shown in the email field in admin list orders page. We need some more space on the line and dont need to see all of the email address.



Thanks

John

[quote name='johnbol1' timestamp='1407160537' post='188787']

Anyone tell me how I can shorten the amount of characters shown in the email field in admin list orders page. We need some more space on the line and dont need to see all of the email address.



Thanks

John

[/quote]



Hi, John



Open /skins/basic/admin/views/orders/manage.tpl



And replace



{$o.email}




with



{$o.email|truncate:45:"...":true}




where 45 - is the required amount of characters

Thanks !