P粉4267805152023-07-31 15:01:46
Translation: If you want to modify it through code, you can use the woocommerce_backordered_item_meta_name filter hook.
So you get:
function filter_woocommerce_backordered_item_meta_name( $string, $item ) { // Replace with new text $string = 'My new text'; return $string; } add_filter( 'woocommerce_backordered_item_meta_name', 'filter_woocommerce_backordered_item_meta_name', 10, 2 );
But you can also make changes in the language file.