Hi there zenners,
Does anyone know if it is possible to replace the 'Model' Field with the ID number that ZenCart gives as a unique ID to the corresponding item?
Thanks people!
Hi there zenners,
Does anyone know if it is possible to replace the 'Model' Field with the ID number that ZenCart gives as a unique ID to the corresponding item?
Thanks people!
You would need to use the:
$order->products[$i]['id']
for the products_id on what is in the order ...
Linda McGrath
If you have to think ... you haven't been zenned ...
Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!
Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
Officially PayPal-Certified! Just click here
Try our Zen Cart Recommended Services - Hosting, Payment and more ...
Signup for our Announcements Forums to stay up to date on important changes and updates!
on what file? and where abouts? sorry - im not the greatest with this stuff. Im getting better. but still far from perfection.
Nevermind - i worked it out - just need to make it look a little neater ;)
What was the solution that you discovered that worked best for you?![]()
Linda McGrath
If you have to think ... you haven't been zenned ...
Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!
Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
Officially PayPal-Certified! Just click here
Try our Zen Cart Recommended Services - Hosting, Payment and more ...
Signup for our Announcements Forums to stay up to date on important changes and updates!
I'm trying to figure this out as well. Please post a solution after you've found them...
Where do I find this
$order->products[$i]['id']
Thank you
I found the solution:
go to /public_html/admin/invoice.php
replace $order->products[$i][model'] with : $order->products[$i]['id']
do the same with /admin/packingslip.php
the Model field will then be replaced with the Product ID field.