如何在仪表板小部件中更改“WooCommerce Status”文本

时间:2019-08-02 作者:Maher Aldous

我想更改仪表板小部件中的“Woocommerce状态”文本。请参见图片:Woocommerce Status

我在中找到此代码http://stackoverflow.com 但它不起作用。

function change_add_to_cart_message( $translated, $text, $domain  ) {
    global $pagenow;
    if( $text === \'WooCommerce status\' && $domain === \'woocommerce\' && is_admin() && $pagenow === \'index.php\' ){
        $translated = __( \'WooCommerce summary\', $domain );
    }
    return $translated;
}
add_filter(  \'gettext\',  \'change_add_to_cart_message\', 10, 3 );

2 个回复
SO网友:user189085
/*Wedgets Status*/
function change_add_to_cart_message( $translated, $text, $domain  ) {
    global $pagenow;
    if( $text === \'WooCommerce Status\' && $domain === \'woocommerce\' && is_admin() && $pagenow === \'index.php\' ){
        $translated = __( \'Resumo de Vendas\', $domain );
    }
    return $translated;
}
add_filter(  \'gettext\',  \'change_add_to_cart_message\', 10, 3 );
/*Wedgets Reviews*/
function woocommerce_dashboard_recent_reviews( $translated, $text, $domain  ) {
    global $pagenow;
    if( $text === \'WooCommerce Recent Reviews\' && $domain === \'woocommerce\' && is_admin() && $pagenow === \'index.php\' ){
        $translated = __( \'Avaliações de Produtos\', $domain );
    }
    return $translated;
}
add_filter(  \'gettext\',  \'woocommerce_dashboard_recent_reviews\', 10, 3 );
SO网友:Maher Aldous

只需更改S 将状态字改为大写WooCommerce status 使用WooCommerce Status. 幸亏Sally CJ

相关推荐

Change home-url in dashboard

我想知道我是否可以更改;主页“-仪表板管理栏中的按钮。现在它只是重定向到/, 但我需要它重定向到/velkommen.每当登录用户登录时/, 它们已重定向到/velkommen, 因此,在某种程度上,它已经按我所希望的那样工作了(有一个额外的重定向),但最好不要运行javascript重定向,因为它会为用户创建等待时间。为了运气,我尝试了以下方法:Change homepage urlHow to change the Admin-bar's link target?