Reputation: 705
How to change woocommerce checkout 'Ship to a Different Address' section title to 'Partial Pay'?
Upvotes: 2
Views: 8088
Reputation: 1
Also, it can be done with Loco Translate plugin, by updating woocommerce plugin
Upvotes: 0
Reputation: 611
Add this to your functions.php
function shipchange( $translated_text, $text, $domain ) {
switch ( $translated_text ) {
case 'Ship to a different address?' :
$translated_text = __( 'Partial Pay', 'woocommerce' );
break;
}
return $translated_text;
}
add_filter('gettext', 'shipchange', 20, 3);
Upvotes: 7