有什麼方法可以添加任何模塊與多個模板(.tpl
)文件的鏈接?如何鏈接模塊與多個tpl文件?
我不確定,但是像這樣:OpenCart歡迎控制器文件。
if (file_exists(DIR_TEMPLATE . $this->config->get('config_template') . '/template/module/welcome.tpl')){
$this->template = $this->config->get('config_template') . '/template/module/welcome.tpl';
$this->template = $this->config->get('config_template') . '/template/module/new.tpl';
}else{
$this->template = 'default/template/module/welcome.tpl';}
但是這個例子不起作用。
你想在welcome.tpl文件中加載new.tpl內容? –
是的,我想在welcome.tpl上用ajax調用new.tpl,但是如何?例如welcome.tpl。 @AmitMaurya – user5493831
你正在使用哪個版本的opencart? –