在我的 opencart 文件中哪里可以找到“div class="return-reason_id" 的“文本/内容”?想要更改一般的文本。请参阅链接:http ://bionatura.noez.in/bionatura/index.php?route =帐户/退货/插入
例如更改“Dean on Arrival”;找不到页面(.css?,.php.?等)来改变它!
在我的 opencart 文件中哪里可以找到“div class="return-reason_id" 的“文本/内容”?想要更改一般的文本。请参阅链接:http ://bionatura.noez.in/bionatura/index.php?route =帐户/退货/插入
例如更改“Dean on Arrival”;找不到页面(.css?,.php.?等)来改变它!
这可以从后端轻松完成:
管理员 --> 系统 --> 本地化 --> 返回
无需更改任何代码。
您可以在/catalog/controller/account/return.php
. 您的控制器方法是插入方法。您可以使用语言文件来更改页面上的某些文本。您的语言文件适用/catalog/language/YOUR_LANGUAGE/account/return.php
于该页面。您可以搜索Dean on Arrival
并更改您想要的内容。
来自 muy 语言文件的示例:$_['entry_reason'] = 'Reason for Return:';
. 如果您从语言文件更改此行,$this->data['entry_reason'] = $this->language->get('entry_reason');
此行会受到控制器文件的影响,并且
<div class="return-reason"><span class="required">*</span> <b><?php echo $entry_reason; ?></b><br />
<table>
<?php foreach ($return_reasons as $return_reason) { ?>
<?php if ($return_reason['return_reason_id'] == $return_reason_id) { ?>
<tr>
<td width="1"><input type="radio" name="return_reason_id" value="<?php echo $return_reason['return_reason_id']; ?>" id="return-reason-id<?php echo $return_reason['return_reason_id']; ?>" checked="checked" /></td>
<td><label for="return-reason-id<?php echo $return_reason['return_reason_id']; ?>"><?php echo $return_reason['name']; ?></label></td>
</tr>
<?php } else { ?>
<tr>
<td width="1"><input type="radio" name="return_reason_id" value="<?php echo $return_reason['return_reason_id']; ?>" id="return-reason-id<?php echo $return_reason['return_reason_id']; ?>" /></td>
<td><label for="return-reason-id<?php echo $return_reason['return_reason_id']; ?>"><?php echo $return_reason['name']; ?></label></td>
</tr>
<?php } ?>
<?php } ?>
</table>
<?php if ($error_reason) { ?>
<span class="error"><?php echo $error_reason; ?></span>
<?php } ?>
这些行将影响我的 .tpl 文件,您可以从控制器文件中找到您的模板文件名。
if (file_exists(DIR_TEMPLATE . $this->config->get('config_template') . '/template/account/return_form.tpl')) {
$this->template = $this->config->get('config_template') . '/template/account/return_form.tpl';
} else {
$this->template = 'default/template/account/return_form.tpl';
}
默认的 return.php 模板文件是default/template/account/return_form.tpl
.