Post Content Replacement Tool

DRE

Well-known member
Licensed customer
Hi. I'm using Kier's Post Content Replacement Tool that uses Search / Replace.

How do I replace the following phrase: using Tapatalk

with a custom phrase such as: using Tapwater

Just an example...

postreplacement.webp
 
Hey Jake,

awesome - do you also have the SQL-Query for changing single words in Thread Titles? I guess you only have to change the "xf_post" to another expression. Thanks :)!
 
Hey Jake,

awesome - do you also have the SQL-Query for changing single words in Thread Titles? I guess you only have to change the "xf_post" to another expression. Thanks :)!
Code:
UPDATE xf_thread
SET title= REPLACE(title, 'using Tapatalk', 'using Tapwater');

That should do it :)
 
@Jake: When I ran your query with the goal to replace "RL" with "Ralph Lauren" it also changed "URL" to "URalph Lauren". Is there a way to only change words with a Space in front and behind them to avoid this? Thanks for an Update...
 
Back
Top Bottom