wordpress woocommerce更改库存状态文本

3zwjbxry  于 11个月前  发布在  WordPress
关注(0)|答案(2)|浏览(143)

我有一个woocommerce网站。我卖布料。我如何更改库存状态文本?enter image description here
我检查了股票设置,但找不到它。而且,我看不到这样的插件。你能帮助我吗?

bis0qfac

bis0qfac1#

add_action('woocommerce_get_stock_html', 'woocommerce_get_stock_html_mod', 10, 2);
function woocommerce_get_stock_html_mod($html, $product){
    return $html;
}

字符串
https://woocommerce.wp-a2z.org/oik_api/wc_get_stock_html/

dzjeubhm

dzjeubhm2#

添加_过滤器('woocommerce_get_stock_html','自定义_get_stock_html',10,2);
function custom_get_stock_html($html,$product){ $availability = $product->get_availability();

if (!empty($availability['availability'])) {
    ob_start();

    // Burada stok durumu için kullanılan template dosyasını kontrol ediyoruz
    wc_get_template(
        'single-product/stock.php',
        array(
            'product'      => $product,
            'class'        => $availability['class'],
            'availability' => $availability['availability'],
        )
    );

    // Template dosyasında 'Adet kaldı' metnini 'Metre kaldı' olarak değiştiriyoruz
    $html = str_replace('adet kaldı', 'metre kaldı', ob_get_clean());
}

return $html;

字符串
}

相关问题