WordPress Text ersetzen mit PHP
function change_text( $output ) { if ( ‚alter Text‘ === $output) { $output = ’neuer Text!‘; } return $output; } add_filter( ‚gettext‘, ‚change_text‘, 20 );
WooCommerce – Text „Nicht vorrätig“ anpassen
/* * WooCommerce – Text „Nicht vorrätig“ anpassen */ add_filter(‚woocommerce_get_availability_text‘, function($text, $product) { if (!$product->is_in_stock()) { $text = ‚ Leider ausverkauft‘; // Text statt nicht vorrätig } return $text; }, 10, 2);