View Single Post
  #4  
Old 04-18-2005, 06:15 AM
 
lsmcswain lsmcswain is offline
 

Newbie
  
Join Date: Jul 2003
Posts: 4
 

Default Here are the template modifications for version 4.0.13

How to remove the "Enter Your Price" and the subsequent price text field.

This is from the xcart techs...

Please perform the following operations:

1. open skin1/customer/main/product.tpl and replace

<INPUT type="text" size="7" name="price">

with

{*<INPUT type="text" size="7" name="price">*}
<FONT class="ProductDetailsTitle"><SPAN id="product_price">{include file="currency.tpl" value=$product.taxed_price}</SPAN></FONT>
<INPUT type="hidden" name="price" value="0.00">


2. open skin1/customer/main/products.tpl

replace

<FONT class="ProductPrice">{$lng.lbl_enter_your_price}</FONT>

with

{*<FONT class="ProductPrice">{$lng.lbl_enter_your_price}</FONT>*}
<FONT class="ProductPrice">{$lng.lbl_our_price}: {include file="currency.tpl" value=$products[product].taxed_price}</FONT>

3. open skin1/customer/main/products_t.tpl and replace


<FONT class="ProductPrice">{$lng.lbl_enter_your_price}</FONT>

with

{*<FONT class="ProductPrice">{$lng.lbl_enter_your_price}</FONT>*}
<FONT class="ProductPrice">{$lng.lbl_our_price}: {include file="currency.tpl" value=$products[product].taxed_price}</FONT>



4. You might need to open general settings page and set allowed minimum order total to 0.
__________________
lsmcswain
Reply With Quote