Woocommerce改变延迟消息的颜色

时间:2018-05-10 09:09:55

标签: wordpress text woocommerce colors

我正在寻找一种方法来改变延期交货信息的文字颜色。 现在我正在使用这段代码:

function so_42345940_backorder_message( $text, $product ){
    if ( $product->managing_stock() && $product->is_on_backorder( 1 ) ) {
        $text = __( 'Text here', 'your-textdomain' );
    }

    return $text;
} 

add_filter( 'woocommerce_get_availability_text', 'so_42345940_backorder_message', 10, 2 );

它现在是绿色,颜色与可用颜色相同。客户错过了它,所以我想给它另一种颜色

提前致谢! The green text here

1 个答案:

答案 0 :(得分:0)

仅使用CSS即可做到,某些主题中有一个类名,每个主题的类名可以不同,所以您可以这样做:

启用产品的缺货,然后在产品页面上搜索页面源代码中的单词“ backorder”,对我来说(Nitro Theme),包装整个页面内容的产品ID的div为“ onbackorder”类这是CSS:

.onbackorder .stock.in-stock{
    background: #fd5f28 !important;
}