在OpenCart中更改类别标题

时间:2015-11-10 21:05:27

标签: opencart

我正在运行一个基于OpenCart的在线商店,我想在类别标题中添加更多内容。例如,现在我有一个名为Electronics的类别。标题很简单:电子产品。我想补充一下,例如,文本"购买"在标题中,在类别名称前面。

任何人都知道如何实现这一目标?

2 个答案:

答案 0 :(得分:2)

如果你有多语言,请使用以下步骤:

  1. 修改:" / catalog / language /" languageFolder " /product/category.php" 添加这>

    $_['text_buy'] = 'Buy ';

  2. 编辑:" /catalog/controller/product/category.php"

  3. 之后
      

    $ data [' text_sale'] = $ this-> language-> get(' text_sale');    (第120行)

    $data['text_buy'] = $this->language->get('text_buy');

    1. 编辑位于目录/ view / theme / default / template / product / 的模板文件category.tpl 在编辑器的第1步中打开文件,在第17行找到

    2. 使用<h2><?php echo $text_buy . $heading_title; ?></h2>替换第2步中的第 或<h2><b><?php echo $text_buy ?></b><?php echo $heading_title; ?></h2>

答案 1 :(得分:1)

  1. 编辑位于目录/ view / theme / default / template / product /
  2. 的模板文件 category.tpl
  3. 在编辑器的第1步中打开文件,然后在第17行找到<h2><?php echo $heading_title; ?></h2>
  4. 使用<h2><?php echo 'Buy ', $heading_title; ?></h2>
  5. 替换第2步中的行
  6. 保存文件并进行测试