Okay, I figured out how to do this on my own.
It's actually pretty easy.
To display information from the extra fields simply add the following:
Code:
{$products[product].param00}
where param00 is the first extra field.
Continue from there and add as many extra fields as you have in the DB
Code:
{$products[product].param01}
{$products[product].param02}
{$products[product].param03}
{$products[product].param04}
{$products[product].param05}
This will simply list the fields.
You should also add what they are.
For example:
Code:
<table>
<tr><td>Extra Field 01:</td><td>{$products[product].param01}</td></tr>
<tr><td>Extra Field 02:</td><td>{$products[product].param02}</td></tr>
<tr><td>Extra Field 03:</td><td>{$products[product].param03}</td></tr>
</table>
I implemented this on the customers/products page directly beneath the line:
Code:
{$products[product].descr|truncate:300:"...":true}
If you're still unsure as to what the end result will look like try adding the code to the products page and you will soon see.
You may also want to consider adding it to the Featured Products page as well..
Also for reference, poking around the database and finding the xcart_products table will list all the available fields. Try switching out the param00 for something else (like fulldescr) and you will quickly see how easy this really is...
Thanks for the lead funkydunk
