Page 1 of 1

[MOD] Show product name while editing

Posted: Wed Jun 17, 2009 7:27 pm
by Martin
(Original Author Moe80)

This hack displays the product name clearly on the edit product page. Allowing you to refer to the product you're editing.

in admin/templates/product.form.tpl

Find:

Code: Select all

<td class="Heading1">%%GLOBAL_Title%%</td>
And replace it with this:

Code: Select all

<td class="Heading1">%%GLOBAL_Title%%  &nbsp;&nbsp;<i><font color="red"> %%GLOBAL_ProdName%%</font></i> </td>
Always remember to BACKUP!!

Hope this helped..

Re: [MOD] Show product name while editing

Posted: Thu Jun 18, 2009 9:22 am
by Tony Barnes
This is a great simple change, lord knows why it's not standard!

Re: [MOD] Show product name while editing

Posted: Tue Jun 23, 2009 6:33 am
by manamana
Tony Barnes wrote:This is a great simple change, lord knows why it's not standard!
Agreed! Thanks for including it here.

Re: [MOD] Show product name while editing

Posted: Wed Oct 06, 2010 6:17 pm
by SamX
On ISC6 the code is:
<td class="Heading1">{{ Title|safe }}&nbsp;&nbsp;<i><font color="red"> {{ ProdName|safe }}</font></i> </td>

Re: [MOD] Show product name while editing

Posted: Thu Jan 06, 2011 9:01 pm
by jesterstrickbits
Thank you, thank you, thank you!
This does make editting much easier! (and thanks to SamX for the ISC6 edit)

Tracey

Re: [MOD] Show product name while editing

Posted: Sat Jan 08, 2011 11:46 pm
by DBMAN
Forgot all about this great one after changing things.

Thanks, big help. :D

Re: [MOD] Show product name while editing

Posted: Wed Mar 14, 2012 4:05 pm
by xukc
Any ideas how to add the SKU to the product title as well? :roll:

Re: [MOD] Show product name while editing

Posted: Mon Dec 03, 2012 9:36 am
by xaminha
in 6.1.9

Code: Select all

<td class="Heading1">{{ Title|raw }} - <b>{{ ProdName|raw }}</b></td>