我有两个模块。
- 自定义页脚。
- 见证。
现在我正在尝试在自定义页脚中显示推荐模块。就像我添加的另一个stackoverflow帖子一样
// Display testimonial part
$this->data['testimonial_block'] = $module = $this->getChild('module/testimonial', array(
'limit' => 5,
'image_width' => 80,
'image_height' => 80
));
在"catalog/controller/common/customfooter.php"
之前$this->render ();
并<?php echo $testimonial_block; ?>
在里面添加customfooter.tpl
添加后我收到此错误
Notice: Undefined index: testimonial_title in C:\xampp\htdocs\magichomegym\catalog\controller\module\testimonial.php on line 6
Notice: Undefined index: testimonial_limit in C:\xampp\htdocs\magichomegym\catalog\controller\module\testimonial.php on line 22
有谁知道我哪里出错了?