Page 1 of 1

Product detail display findings

PostPosted: Mon Nov 26, 2007 10:45 pm
by jnewman67
Want to modify the way the product detail information is displayed? you need to edit this file:

templates/view_product.html

tired of having your image automatically resized?

remove

Code: Select all
width="200px"


from the IMG line at the beginning of the file


want to display the "entered by" info:

Code: Select all
Donated by:
{$product->htmlValue('entered_by')} 


(wrapped in
code of course)


want to add a disclaimer at the bottom of the detail listing?

change (at the bottom of the file)

Code: Select all
        {/if}



to

Code: Select all
        {/if}
       

               


                DISCLAIMER:
                Your disclaimer here.
       



(wrapped in
code of course)


and finally, my favorite way to quickly embed an email address for questions:

Code: Select all
               
Questions?

               
               



this could only be better if someone could find a way to pull the email address defined in the config file in as the email address instead of hardcoding it (IMHO)

hope they help - use 'em if you need 'em

edited due to code disappearing - fixed