gpt4 book ai didi

themes - OpenCart:在默认页面上添加左列(包含类别等)

转载 作者:行者123 更新时间:2023-12-04 04:12:43 25 4
gpt4 key购买 nike

我想在默认页面中添加“左列”(类别等)。我看到左侧面板存在于产品页面上,但在默认页面中缺失。请查看屏幕截图。请建议。

最佳答案

1 - 在模板文件夹中打开所需的页面,例如,内容/信息页面:

catalog\view\theme\default\template\information.tpl

2 - 在所需位置添加此行:
<?php echo $column_left; ?>

如果失败,打开该代码的相关MVC Controller 模型,例如:
catalog\controller\information.php

查找 $this->children = array(
确保数组包含左侧面板,例如:
$this->children = array(
'common/column_left',
'common/column_right',
'common/content_top',
'common/content_bottom',
'common/footer',
'common/header'
);

我希望您的意思是默认情况下信息等,也就是主页,已经有这个:( \catalog\view\theme\default\template\common\home.tpl )
<?php echo $header; ?><?php echo $column_left; ?><?php echo $column_right; ?>
<div id="content"><?php echo $content_top; ?>
<h1 style="display: none;"><?php echo $heading_title; ?></h1>
<?php echo $content_bottom; ?></div>
<?php echo $footer; ?>

关于themes - OpenCart:在默认页面上添加左列(包含类别等),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12216573/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com