我正在运行一个基于OpenCart的在线商店,我想在类别标题中添加更多内容。例如,现在我有一个名为Electronics的类别。标题很简单:电子产品。我想补充一下,例如,文本"购买"在标题中,在类别名称前面。
任何人都知道如何实现这一目标?
答案 0 :(得分:2)
如果你有多语言,请使用以下步骤:
修改:" / catalog / language /" languageFolder " /product/category.php" 添加这>
$_['text_buy'] = 'Buy ';
编辑:" /catalog/controller/product/category.php" 在
$ data [' text_sale'] = $ this-> language-> get(' text_sale'); (第120行)
$data['text_buy'] = $this->language->get('text_buy');
<h2><?php echo $text_buy . $heading_title; ?></h2>
替换第2步中的第
或<h2><b><?php echo $text_buy ?></b><?php echo $heading_title; ?></h2>
答案 1 :(得分:1)
<h2><?php echo $heading_title; ?></h2>
<h2><?php echo 'Buy ', $heading_title; ?></h2>