Created
October 24, 2016 17:06
-
-
Save JayWood/7e35151d307b333a18afae26ef83cec3 to your computer and use it in GitHub Desktop.
Local delivery filter for translated text
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function fb_lp_to_local_delivery( $translated_text ) { | |
if ( 'Local Pickup' == $translated_text ) { | |
$translated_text = 'Local Delivery'; | |
} | |
} | |
add_filter( 'gettext', 'fb_lp_to_local_delivery' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment