Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / Moving product description

Moving product description

Locked

Views: 1,122

Results 1 to 2 of 2
This thread is locked. New replies are disabled.
17 Jan 2007, 7:46 PM
#1
hostilerecords avatar

hostilerecords

New Zenner

Join Date:
Dec 2006
Location:
Great Yarmouth, UK
Posts:
14
Plugin Contributions:
0

Moving product description

On my display product page, I would like to move my product name and description underneath the picture by default, instead of having a very narrow description and lots of blank space.

I know it has something to do with tpl_product_info_display but i cannot seem to work out where or what to change.

If its incredibly difficult, would it be possible to e-mail the file to someone who knows what they're doing. :)

Thanks in advance.

17 Jan 2007, 10:16 PM
#2
gjh42 avatar

gjh42

Black Belt

Join Date:
Jul 2005
Location:
Upstate NY
Posts:
21,876
Plugin Contributions:
8

Re: Moving product description

You have the right starting place. Copy tpl_product_info_display.php to your custom template directory, and rearrange parts for starters.

All the elements of the display are marked by <!-- bof something --> and <!-- eof something -->. You can move any of those elements in its entirety to another location in the file - just don't put one inside another. So put them in the order you want. Then if the title is next to the image instead of below it, add a line

<br class="clearboth" />

to the end of the main image element. This will force a completely new line.

See the FAQ's for info on making your own custom template, if you don't already have one.