我不需要在我的帐户页面上的订单表中删除此项目计数文本,因为我不需要它:

php - 从Woocommerce的我的帐户订单表中删除项目计数-LMLPHP

Gesamtsumme上的文字应更改为:

234,35€对于1 Artikel



234,35€

我已经尝试过删除文件中的内容,但是我想通过我的functions.php来做到这一点,因为我认为这更好。

最佳答案

对于所有语言,使之适用于单数和复数项目计数的正确方法是(其中$text是未翻译的字符串):

add_filter('ngettext', 'remove_item_count_from_my_account_orders', 105, 3 );
function remove_item_count_from_my_account_orders( $translated, $text, $domain ) {
    switch ( $text ) {
        case '%1$s for %2$s item' :
            $translated = '%1$s';
            break;

        case '%1$s for %2$s items' :
            $translated = '%1$s';
            break;
    }
    return $translated;
}


代码进入您的活动子主题(或活动主题)的function.php文件中。经过测试和工作。

10-08 03:18