wordpress 我需要从供应商 Jmeter 板中删除SKU、库存、发货,并在Dokan Pro中编辑产品模板

jrcvhitl  于 2023-03-01  发布在  WordPress
关注(0)|答案(2)|浏览(145)

我的商店将出售我目前在Dokan的供应商编辑产品页面上的所有数字项目,有一些选项我想删除。如描述,SEO,库存选项,链接的产品,运输,税收,折扣,和其他选项。请帮助我。

9gm1akwq

9gm1akwq1#

你可以通过覆盖模板来实现,文件的位置是dokan-lite/templates/products/new-product-single.php,inventory.php.跟随这篇文章来了解如何通过子主题覆盖模板文件:https://wpdoctor.press/overriding-dokan-plugin-template-easy/
谢谢!

x7yiwoj4

x7yiwoj42#

.dokan-product-inventory.dokan-edit-row {
        display: none !important;
    }

#dokan-product-list-table td:nth-child(5), 
#dokan-product-list-table td:nth-child(6),
#dokan-product-list-table th:nth-child(5), 
#dokan-product-list-table th:nth-child(6) 
{
    display: none !important;
}

相关问题