How can I have my code replace the body text rather than just "returning":
if($body == "Garçon")
return;
Also, since == is looking for exact string of text, how do I make it look for the body containing "Garçon"?
Essentially, I'm trying to build in a filter to change "Garçon" to "Garcon" since the special "ç" character comes up "null" in my database.
Thanks for your help.