Is it possible to change block titles in ViArt? For example I wish to change "Products Categories" to "Genres"
And also a few others.
Thank you
AmandaK (Guest)
23 Sep 2007 1:58 AM
Hi Warren,
Check in the messages folder, choose your language folder for example "en" is the english folder. There is a general catch all file called messages.php with most of the titles.
At a quick glance I didn't see products in there, I did find it in cart_messages on line 17 so you can try that!
Hope this helps!
nonamenone (Guest)
23 Sep 2007 7:51 AM
I can find nearly all of the titles except "Products Categories"
Could that one be somewhere else?
Thanks for any help
Mark
wecreateyou
23 Sep 2007 9:15 AM
I pretty sure "Products Categories" is actually two tags.
{top_category_name} {CATEGORIES_TITLE}
I know categories is a title and can be found under the //title section of messages.php
it looks like this: define("CATEGORIES_TITLE", "Categories");
As for "Products", I'm not sure wher it is yet. any thoughts?
Whittfield
wecreateyou
23 Sep 2007 6:23 PM
I have confirmed the following...
1. "Products Categories" is actually two tags...
{top_category_name} {CATEGORIES_TITLE}
2. "{top_category_name}" tag is found in "cart_messages.php"
See this line under "// cart messages"
define("PRODUCTS_TITLE", "Products");
Note: "PRODUCTS_TITLE" is mapped to {top_category_name} in the document "block_categories_list.php"
See this line:
$t->set_var("top_category_name",PRODUCTS_TITLE);
3. "{CATEGORIES_TITLE}" can be found under the "//title" section of "messages.php"
See this line:
define("CATEGORIES_TITLE", "Categories");