mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
8 lines
247 B
Text
8 lines
247 B
Text
add_filter( 'woocommerce_get_availability_text', 'wc_display_in_stock', 10 );
|
|
|
|
function wc_display_in_stock( $availability ) {
|
|
if ( empty( $availability ) ) {
|
|
$availability = esc_html__( 'In Stock' );
|
|
}
|
|
return $availability;
|
|
}
|