Our site www.viart.com site is operated by latest Viart Shop 5 with default Clear design
Topic Information
Warren (Guest)
Warren (Guest)
Hello,
 
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)
AmandaK (Guest)
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)
nonamenone (Guest)
I can find nearly all of the titles except "Products Categories"
 
Could that one be somewhere else?
 
Thanks for any help
 
Mark
 
wecreateyou
wecreateyou
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
wecreateyou
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");
 
Whittfield