Answer the question
In order to leave comments, you need to log in
Controller not being called from opencart template?
Created a head.php controller in catalog/controller/common folder:
<?php
class ControllerCommonHead extends Controller {
public function index() {
var_dump(123);
die;
return $this->load->view('common/head', $data);
}
}
{{ head }}
Answer the question
In order to leave comments, you need to log in
It was necessary to specify this controller in catalog/controller/home.php:
$data['head'] = $this->load->controller('common/head');
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question