gpt4 book ai didi

php - 重命名 Woocommerce 单个产品页面中的描述选项卡

转载 作者:行者123 更新时间:2023-12-04 02:02:16 29 4
gpt4 key购买 nike

我将此代码粘贴到 function.php 中,但它没有按预期重命名产品页面选项卡 (http://www.noushasasart.com/product/harsh-bark/)

function woo_remove_product_tabs($tabs) {
unset($tabs['reviews']); // Remove the reviews tab
$tabs['description']['title'] = __('Additional Information'); // Rename the

description tab
return $tabs;
}

我该如何解决这个问题?

最佳答案

您忘记了过滤器 Hook :

add_filter( 'woocommerce_product_tabs', 'woo_customize_tabs', 100, 1 );
function woo_customize_tabs( $tabs ) {

unset($tabs['reviews']); // Remove the reviews tab

$tabs['description']['title'] = __( 'More Information' ); // Rename the description tab

return $tabs;
}

代码位于您的事件子主题(或主题)的 function.php 文件中或任何插件文件中。

所有代码都在 Woocommerce 3+ 上测试并且有效。


更新(与您的评论相关) |重命名产品描述标题(在选项卡内):

要重命名描述标题,请使用 woocommerce_product_description_heading 以这种方式过滤 Hook :

add_filter( 'woocommerce_product_description_heading', 'rename_product_description_heading', 10, 1 );
function rename_product_description_heading( $heading ) {
return __( 'Additional Information', 'woocommerce' );
}

代码位于您的事件子主题(或主题)的 function.php 文件中或任何插件文件中。

所有代码都在 Woocommerce 3+ 上测试并且有效。


官方相关文档:Editing product data tabs

关于php - 重命名 Woocommerce 单个产品页面中的描述选项卡,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46380699/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com