Opencart url 问题
Opencart url issue
这是我的网站http://goo.gl/Tsnqzr
OC。 1.5.4.
绿色水平菜单中有联系人url。
我自己加在header.tpl:
<li><a href="http://italimporter.com/index.php?route=information/contact">Contact</a></li>
但在这种情况下我不能翻译它。
所以我想更改此 link,因为它是页脚。左数第二列,上数第一个link:
<li><a href="<?php echo $contact; ?>"><?php echo $text_contact; ?></a></li>
我做到了,但自动翻译不起作用,与页脚不同。
我尝试更改或删除第 237 行 vq2-catalog_view_theme_bigshop_template_common_header.tpl 中的相同 link
但在这种情况下我得到错误:
"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"
那么,如何使 link 自动翻译?
在 header.tpl 中添加此 url 的正确方法是什么?
您必须将以下代码添加到以下文件中
catalog/controller/common/header.php
打开上面的文件并在 index() 函数中粘贴下面的行。
$this->data['text_contact'] = sprintf($this->language->get('text_contact');
秒
也编辑 header.php 的语言文件。
检查您的模板 header.php 文件..
在索引函数中加入以下内容
$this->data['text_contact'] = "Contact";//你需要什么就在“***”里面
确保您不应该在任何 foreach() 循环或 if() 条件中添加此行
更好的是你可以在后面添加
$this->数据['heading_title']
$this->data['text_contact'] = "Contact";//你需要什么就在“***”里面
此代码仅适用于文本视图..
请添加其他代码。,
$this->data['contact'] = $this->url->link('information/contact', 'SSL');
// 它会起作用
这是我的网站http://goo.gl/Tsnqzr OC。 1.5.4.
绿色水平菜单中有联系人url。 我自己加在header.tpl:
<li><a href="http://italimporter.com/index.php?route=information/contact">Contact</a></li>
但在这种情况下我不能翻译它。 所以我想更改此 link,因为它是页脚。左数第二列,上数第一个link:
<li><a href="<?php echo $contact; ?>"><?php echo $text_contact; ?></a></li>
我做到了,但自动翻译不起作用,与页脚不同。
我尝试更改或删除第 237 行 vq2-catalog_view_theme_bigshop_template_common_header.tpl 中的相同 link
但在这种情况下我得到错误:
"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"
那么,如何使 link 自动翻译? 在 header.tpl 中添加此 url 的正确方法是什么?
您必须将以下代码添加到以下文件中
catalog/controller/common/header.php 打开上面的文件并在 index() 函数中粘贴下面的行。
$this->data['text_contact'] = sprintf($this->language->get('text_contact');
秒 也编辑 header.php 的语言文件。
检查您的模板 header.php 文件..
在索引函数中加入以下内容
$this->data['text_contact'] = "Contact";//你需要什么就在“***”里面
确保您不应该在任何 foreach() 循环或 if() 条件中添加此行
更好的是你可以在后面添加
$this->数据['heading_title']
$this->data['text_contact'] = "Contact";//你需要什么就在“***”里面
此代码仅适用于文本视图..
请添加其他代码。,
$this->data['contact'] = $this->url->link('information/contact', 'SSL');
// 它会起作用