mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-30 11:42:22 +08:00
https://stackoverflow.com/questions/69835311/how-to-change-available-on-backorder-text-in-woocommerce-cart/69837542
8 lines
394 B
Text
8 lines
394 B
Text
add_filter( 'woocommerce_get_availability_text', 'filter_product_availability_text', 10, 2 );
|
|
function filter_product_availability_text( $availability_text, $product ) {
|
|
// Check if product status is on backorder
|
|
if ($product->get_stock_status() === 'onbackorder') {
|
|
$availability_text = __( 'Your Custom Text Here', 'your-text-domain' );
|
|
}
|
|
return $availability_text;
|
|
}
|