Language problem

I am testing out CS Cart and it looks very promising, I have been into the language and changed Price etc to show as Line Rental when a customer looks at the product details page.



Hopwever what I am looking for and cannot find, is when the product is displayed on the home page or after selecting the manufacturer which then lists all 10 products, its showing as £15 I need to change this to Line Rental £15



Does anyone know where I can change this in the english language and what variable I am looking for please

The list templates are real basic as far as information that is included so you will have to modify whatever list template you are using to include:


{$lang.price}

Where do i find this i have looked in the language file, and the template editor is blank or would this be in the files on webspace

It depends on what list template you are using. You can find them in: /skins/your_skin/customer/blocks/list_templates/

I have been through every file and I found this in compact_list as


{$lang.product}
{$lang.product_code}
{$lang.Price}
{if $show_add_to_cart} {/if}

I have tried changing it to {$lang.Line rental} but the prices still show on the home page and category pages as £15 instead of Line rental £15

I have changed the labguage file so that when you select an item it does show as Line rental £15 but i cannot seem to change the others


Please point me in the right direction

I can’t tell you because I do not know what list template you are using. The list template you are looking for will not have the code in it hence the reason why you will have to add it. Also, you do not want to add {$lang.Line rental} because you have already changed the variable for price. So all you need is {$lang.price}.

I am using the basic template and the list templates that come with that, so di i have to put that in all the other list templates as well?



In the blocks template lists I have





first_item.tpl grid_list.tpl grid_list2.tpl links_thumb.tpl products2.tpl products_grid.tpl



products_list.tpl simple_list.tpl small_items.tpl small_list.tpl without_image.tpl

[quote name=‘chrisdevelop’]I am using the basic template and the list templates that come with that, so di i have to put that in all the other list templates as well?



In the blocks template lists I have





first_item.tpl grid_list.tpl grid_list2.tpl links_thumb.tpl products2.tpl products_grid.tpl



products_list.tpl simple_list.tpl small_items.tpl small_list.tpl without_image.tpl[/QUOTE]



There is already this code in the compact_list.tpl file, but it does not change the pricing on the home page or when the cayegory name is chosen and the product list for that is displayed. I tried putting the {$lang.Price}

code in some of the files, but it did not work all it did was change the layout. Please help