Opencart 2.3在标题

时间:2017-03-07 07:09:00

标签: php menu opencart

我正在尝试在opencart 2.3的标题上添加自定义菜单,尝试了不同的选项,甚至在堆栈opencart Adding a custom menu in the header menu中尝试了这个选项 但是没有成功,我在Opencart论坛中发现这个代码应该放在header.php文件中:

$this->load->model('catalog/product');

$products_1 = $this->model_catalog_product->getProducts($data = array());                                           
if ($products_1) {$output = '<ul id="topnav">';}                                                            
foreach ($products_1 as $product_1) {                                                                           
    $output .= '<li>';                                                                                                                                          
    $unrewritten  = $this->url->link('product/product', 'product_id=' . $product_1['product_id']);                              
    $output .= '<a href="'.($unrewritten).'">' . $product_1['model'] . '</a>';                              
}
if ($products_1) {$output .= '</ul>';}                                                          
echo $output;                                                                   
?>

And it shows me this error

1 个答案:

答案 0 :(得分:0)

更具体地说,您需要编辑controller / common / header.php以包含view / theme /(您的主题)/common/header.tpl