从主题wordpress覆盖wedevs-dokan-plugin模板文件

时间:2015-09-04 06:50:16

标签: php wordpress wordpress-theming

我使用wedevs-dokan-pluginwedevs.com/dokan)作为WordPress前端用户商店,允许卖家从前端管理商店。 我想覆盖这个插件的一个模板文件。我要覆盖的文件位于:

plugins/wedevs-dokan-plugin/templates/product-edit.php

要覆盖此文件,我复制了该文件并进行了一些更改,将此新文件放在主题目录中,如下所示:

themes/mytheme/wedevs-dokan-plugin/product-edit.php 

但这不适合我。之后我也试过了:

themes/mytheme/wedevs-dokan-plugin/templates/product-edit.php

但那也没有用。

有没有办法从WordPress主题中覆盖插件文件?

1 个答案:

答案 0 :(得分:1)

themes/mytheme/wedevs-dokan-plugin/product-edit.php 

目录名称应为“dokan”,而不是“wedevs-dokan-plugin”,您只能编辑此插件的“templates”目录文件。

因此,新目录将如下所示。

themes/mytheme/dokan/store.php
themes/mytheme/dokan/dashboard/dashboard.php

由于