Skip to content

Instantly share code, notes, and snippets.

@mgibbs189
Last active February 12, 2021 12:44
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 mgibbs189/7f262fb1d76c8da849114152dabb563d to your computer and use it in GitHub Desktop.
Save mgibbs189/7f262fb1d76c8da849114152dabb563d to your computer and use it in GitHub Desktop.
FacetWP - translate "On sale" text
<?php
add_filter( 'gettext', function( $translated_text, $text, $domain ) {
if ( 'fwp-front' == $domain && 'Go' == $text ) {
$translated_text = 'Go (russian)';
}
return $translated_text;
}, 10, 3 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment