Quote:
Originally Posted by jkwalz
Quote:
Originally Posted by mffowler
X-Cart,
Can you STOP putting the product ID in the product title? I removed it for regular products, but for the life of my, how do you remove it for X-Configurator items?
- Mike
|
Did you ever find a solution for this? I want to do the same thing.
JK
|
I found it here:
In
modules/Product_Configurator/pconf_customer_product.tpl
Replace:
Quote:
include file="dialog.tpl" title=$product.producttitle content=$smarty.capture.dialog extra="width=100%"}
|
-with-
Quote:
include file="dialog.tpl" title=$product.product content=$smarty.capture.dialog extra="width=100%"}
|
And for the "Steps" section:
In
modules/Product_Configurator/pconf_customer_step.tpl
replace:
Quote:
{include file="dialog.tpl" title="`$product.producttitle`: `$lng.lbl_step` `$step`" content=$smarty.capture.dialog extra="width=100%"}
|
-with-
Quote:
{include file="dialog.tpl" title="`$product.product`: `$lng.lbl_step` `$step`" content=$smarty.capture.dialog extra="width=100%"}
|
JK