I have a woocommerce website. I sell fabric. How can I change the stock status text?enter image description here
I checked the stock settings but couldn’t find it. Also, I couldn’t see the plugin like this. Can you help me?
I have a woocommerce website. I sell fabric. How can I change the stock status text?enter image description here
I checked the stock settings but couldn’t find it. Also, I couldn’t see the plugin like this. Can you help me?
2
Answers
add_filter('woocommerce_get_stock_html', 'custom_get_stock_html', 10, 2);
function custom_get_stock_html($html, $product) { $availability = $product->get_availability();
}
https://woocommerce.wp-a2z.org/oik_api/wc_get_stock_html/