这是我的网站http://goo.gl/Tsnqzr OC。 1.5.4。
绿色水平菜单中有联系人网址。 我自己在header.tpl中添加了它:
<li><a href="http://italimporter.com/index.php?route=information/contact">Contact</a></li>
但在这种情况下我无法翻译它。 所以我想改变这个链接,因为它是页脚。左起第二列,上面的第一个链接:
<li><a href="<?php echo $contact; ?>"><?php echo $text_contact; ?></a></li>
我做到了,但自动翻译不起作用,与页脚不同。
我尝试在第237行的vq2-catalog_view_theme_bigshop_template_common_header.tpl中更改或删除相同的链接
但在这种情况下,我收到错误:
"Notice: Undefined variable: text_contact in /home/italimpo/domains/italimporter.com/public_html/vqmod/vqcache/vq2-catalog_view_theme_bigshop_template_common_header.tpl on line 237"
那么,如何使此链接自动翻译? 在header.tpl中添加此URL的正确方法是什么?
答案 0 :(得分:0)
您必须将以下代码添加到以下文件
目录/控制器/通用/ header.php文件 打开上面的文件并粘贴到index()函数中的行下面。
$ this-&gt; data [&#39; text_contact&#39;] = sprintf($ this-&gt; language-&gt; get(&#39; text_contact&#39;);
第二 编辑header.php的语言文件。
答案 1 :(得分:0)
检查模板header.php文件..
将以下内容添加到索引函数
中$ this-&gt; data ['text_contact'] =“联系人”; //无论你需要在“***”中找到什么
确保不要在任何foreach()循环或if()条件
中添加此行最好在
之后添加$这 - &GT;数据[ 'HEADING_TITLE']
答案 2 :(得分:0)
$ this-&gt; data ['text_contact'] =“联系人”; //无论你需要在“***”中找到什么
此代码仅适用于文本视图..
请添加其他代码。
$ this-&gt; data ['contact'] = $ this-&gt; url-&gt; link('information / contact','SSL');
//它会起作用