Hi,

First off...thanks for the mod. Installed without issues on my test server and it's great to be able to add ecommerce tracking so easily to my site.

One tweak I'd like to make...I'd like to have ecommerce reporting on the manufacturer of my items sold as well. I don't think Google Analytics lets you add new variables to track, and I want to keep tracking the product name and category. So I figured the easiest way to do this was to concatenate the manufacturers name to the product name (separated by a dash).

Any tips on how to do this? As a PHP programmer I'm mediocre at best but from a db side it's a pretty straightforward query...

SELECT CONCAT(m.manufacturers_name, " - ", pd.products_name) as products_name
FROM products_description pd, manufacturers m, products p
WHERE p.manufacturers_id=m.manufacturers_id
and p.products_id=pd.products_id

Any help appreciated.

thanks,
Don