|
How do I remove the product id number from my product title in the detail pages. Current display is: "product name #xxxxxxxx" I want: "product name" Solution: Open /skin1/customer/main/product.tpl and look for this line (near the bottom): {include file="dialog.tpl" title=$product.producttitle content=$smarty.capture.dialog extra="width=100%"} Change it to: {include file="dialog.tpl" title=$product.product content=$smarty.capture.dialog extra="width=100%"} |