Oct 27, 2018 3:52 pm
Is possible to add the "Replace" functionality to the current existing " Search Phrase" option?
It could be very interesting to have a possible word replacement for the whole Forum.
Thank you very much
2 Replies
Oct 29, 2018 8:02 am
Hi Iokin Pardo,
I'm sorry, but I don't follow you. Could you please clarify a bit?
Oct 30, 2018 12:52 pm
If you want to change X phrase located in all posts content to Y you should execute this SQL query in phpMyAdmin database manager of your cPanel or in other places for SQL queries:
UPDATE `wp_wpforo_posts` SET `body` = REPLACE (`body`, 'X', 'Y');
IMPORTANT:
- Please backup wp_wpforo_posts table before this manipulation.
- If your database table prefix is not wp_ , please change it in SQL query.
- After this SQl you should delete website caches, then delete wpForo all caches in Dashboard > Forums > Dashboard admin page.