![]() |
Product name in checkout
When I go to the checkout screen is displays the product # and price, discount. How do you get the product name instead of the product #. I'm using version 3.5.2
Thanks, Geoff |
Thats done in /skin1/customer/main/cart_details.tpl. What you have to do is change the assigned value for the output from the database table to another field.
Look for a line like this: Code:
<td>{if $products[prod_num].productcode}{$products[prod_num].productcode}{else}#{$products[prod_num].productid}{/if}</td> And change to this: Code:
<td>{if $products[prod_num].product}{$products[prod_num].product}{else}#{$products[prod_num].productid}{/if}</td> The productcode field is used for your SKU and product field is the name of the product. Good luck, dont forget to backup first. |
All times are GMT -8. The time now is 11:50 PM. |
Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.