Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wooexperte/f2f42ac5df653c409b617850c22ee3a3 to your computer and use it in GitHub Desktop.
Save wooexperte/f2f42ac5df653c409b617850c22ee3a3 to your computer and use it in GitHub Desktop.
WooCommerce - Text "Nicht vorrätig" anpassen
/*
* WooCommerce - Text "Nicht vorrätig" anpassen
* https://wooexperte.de/snippet/woocommerce-aehnliche-produkte-ausblenden/
*/
add_filter('woocommerce_get_availability_text', function($text, $product) {
if (!$product->is_in_stock()) {
$text = ' auf Anfrage lieferbar'; // Text anpassen
}
return $text;
}, 10, 2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment