如何在产品页面中隐藏 Dokan 供应商信息?
How to hide Dokan vendor info in product page?
有一个名为“Dokan Vendor Info Hider – 从商店列表和商店页面隐藏供应商信息的插件
”,好久没更新了,没用。
还有其他解决方案吗?
如果您想隐藏 Dokan 供应商信息,您需要在主题的 functions.php 文件中使用此代码 –
function dokan_remove_seller_info_option( $tabs ){
unset ($tabs ['seller']);
return $tabs;
}
add_filter( 'woocommerce_product_tabs', 'dokan_remove_seller_info_option', 11 );
有一个名为“Dokan Vendor Info Hider – 从商店列表和商店页面隐藏供应商信息的插件 ”,好久没更新了,没用。 还有其他解决方案吗?
如果您想隐藏 Dokan 供应商信息,您需要在主题的 functions.php 文件中使用此代码 –
function dokan_remove_seller_info_option( $tabs ){
unset ($tabs ['seller']);
return $tabs;
}
add_filter( 'woocommerce_product_tabs', 'dokan_remove_seller_info_option', 11 );