真的必裝-而且又免費的-模組-就是這個-OCMOD編輯管理器
關鍵功能都在這
https://www.opencart.com/index.php?route=marketplace/extension/info&extension_id=22015
Desenvolvida e mantida por OpenCart Brasil:
www.opencartbrasil.com.br
Esta extensão foi desenvolvida no formato OCMOD, e tem o objetivo de habilitar na administração do OpenCart funcionalidades para criar, editar e gerenciar arquivos XML no formato OCMOD, além de possuir recursos úteis que são utilizados em atividades rotineiras durante o processo de implantação e ajuste da loja.
As seguintes funcionalidades serão adicionadas no menu Extensões→Modificações:
Importante:
Nenhum arquivo do OpenCart é alterado com essa extensão.
#######################################################################################
This extension was developed without OCMOD format, and has the objective of enabling the administration of OpenCart functionalities to create, edit and manage XML files in OCMOD format, as well as having useful resources that are used during the process of implementation and adjustment of the store.
The following features have been added without menu Extensions→Modifications:
Important:
No OpenCart file is changed with this extension.
GitHub:
https://github.com/opencartbrasil/ocmod-editor/
本人實測,此插件可以在 2.3.0.2下正常運作,3.0版本的話的話運作上4個按鈕按不了, 然後在部分LINUX系統下運行173行會有錯誤
Fatal error: Can't use function return value in write context in /home/wwwroot/o01/admin/controller/extension/modification_editor.php on line 173
作者犯了一個空值上的判斷錯誤,請跟著我這樣修改就可以了
173行 if (!empty(trim($item->nodeValue))) {
改成 if (!empty($item->nodeValue)) {
就好了