Skip to content

Instantly share code, notes, and snippets.

@JudeRosario
Created December 5, 2015 23:33
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 JudeRosario/54ae5ab49c1057782c75 to your computer and use it in GitHub Desktop.
Save JudeRosario/54ae5ab49c1057782c75 to your computer and use it in GitHub Desktop.
MP HotFix
function custom_mp_quick_fix( $translated_text, $untranslated_text, $domain ) {
switch ( $untranslated_text ) {
case 'Cart update notice: this item has a limit per order.' :
$translated_text = 'Out of Stock';
break;
}
return $translated_text ;
}
add_filter( 'gettext', 'custom_mp_quick_fix', 20, 3 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment