【问题标题】:Change Default Tab Heading Text | Wordpress WooCommerce更改默认选项卡标题文本 | WordPress WooCommerce
【发布时间】:2015-09-29 10:30:33
【问题描述】:

在单个产品页面下的wordpress woocommerce中,我想更改默认标签标题:

将“描述”更改为功能将“附加信息”更改为“规范”

我应该在哪个 PHP 文件下进行这些更改,以使其生效?

【问题讨论】:

    标签: php wordpress woocommerce


    【解决方案1】:

    这是重命名选项卡的方法(只需添加到您的主题 functions.php 文件) - 这适用于旧版本的 WooCommerce per their documentation

    add_filter( 'woocommerce_product_tabs', 'woo_rename_tabs', 98 );
    function woo_rename_tabs( $tabs ) {
    
        $tabs['description']['title'] = __( 'Features' );       // Rename the description tab
        $tabs['additional_information']['title'] = __( 'Specifications' );  // Rename the additional information tab
    
        return $tabs;
    
    }
    

    【讨论】:

    • 它使用 WooCommerce 3.6.5 破坏了网站
    猜你喜欢
    • 1970-01-01
    • 2018-05-29
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2012-06-17
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多