Anybody who could revive this plugin and make it compatible to last versions of wordpress and php?
Send me a quote
thanks,
Am I right in thonking that this plugin has been abandoned?
If so, does anyone know of another plugin that rewrites post text to the database, rather than just replacing the on-screen version?
Hi
Is there a way to allow replacing for an entire page except for a portion of it. Let’s say all the words will be replaced anywhere are found on a page, but not when in between specific tags, example <p id=”x1″> words </p>.
I want the words in those tags to remain intact, but to replace elsewhere on the same page.
Thanks,
Warning: Missing argument 2 for wpdb::prepare(), called in /…/wp-content/plugins/word-filter-plus/csv-manip.php on line 204 and defined in /…/wp-includes/wp-db.php on line 1147
…
Warning: Cannot modify header information – headers already sent by (output started at /…/wp-includes/wp-db.php:1147) in /…/wp-content/plugins/word-filter-plus/csv-manip.php on line 214
…
]]>Could you fix it please? https://pastebin.com/mRTYudW4
]]>Hi Brian
Congratulations on a well considered plugin, with well written description and instructions.
Trying it for the first time today. Test comments had text substituted as expected but when I went to the comments management screen they have the same replacements there.
Can you update this so that comments in that screen are always shown as posted?
Keep up the good work.
Laurie Williams
]]>You might want to check the plugin with WP_DEBUG enabled. Lots of undefined constants there.
]]>It should work in the url by default but it doesn’t why?
]]>Hello,
The plugin is great. But dosent support unicode. Unicode text displaying as ????? after save.
Please fix the issue.
Thanks.
]]>Regex entries are not saved in multisite installations
]]>Hey there — just wondering whether I’m missing something. Does the plugin ignore punctuation?
For example, I wanted to replace !up with a long chunk of HTML. It didn’t work, although asking it to replace 7up with that HTML did work.
So… is there a way to have the plugin also include punctuation in its search?
Thanks!
]]>What happened to this awesome plugin?
]]>Hello!
Thanks for the great plugin – works perfectly on my site.
I′m using it to filter badwords in content published by visitors of the site. Posts are being generated automatically after submitting a form (using Formidable Pro).
Now I would like to post the posts of the site to twitter and facebook by using Social Networks Auto-Poster https://www.ads-software.com/extend/plugins/social-networks-auto-poster-facebook-twitter-g/
I already tested this and unfortunately the contents are not filtered when being posted to the social networks. Any idea how this could be done?
I′m working in passive mode of your plugin – think this is the best so original content is not being altered.
Best regards,
Jan
https://www.ads-software.com/extend/plugins/word-filter-plus/
]]>Hi, This is such a great plugin. but since the regex feature is not work well because Adds backslashes again and again.
So, I want to write my own PHP regex. which .php file on your plugin that i must place the custom PHP?
https://www.ads-software.com/extend/plugins/word-filter-plus/
]]>I also want to change words in a wordpress custom field meta called “variations”, how can i do that?
https://www.ads-software.com/extend/plugins/word-filter-plus/
]]>I also want to change words in a wordpress custom field meta called “variations”, how can i do that?
https://www.ads-software.com/extend/plugins/word-filter-plus/
]]>The prepare() function has an added argument as of WP 3.5. Toi get this plugin to work with 3.5, add a dummy argument by changing line 141 in word-filter-plus.php
from
$word_filter_plus_replacements = $wpdb->get_results( $wpdb->prepare( "SELECT * FROM " . $this->plugin_table_name . " ORDER BY id" ),
to:
$word_filter_plus_replacements = $wpdb->get_results( $wpdb->prepare( "SELECT * FROM " . $this->plugin_table_name . " ORDER BY id", $a ), ARRAY_A ) ;
https://www.ads-software.com/extend/plugins/word-filter-plus/
]]>The core function wpdb::prepare() was changed to require 2 arguments as of WP 3.5. Until Brian Layman gets enough time to fix it, change line 141 in word-filter-plus.php from:
$word_filter_plus_replacements = $wpdb->get_results( $wpdb->prepare( "SELECT * FROM " . $this->plugin_table_name . " ORDER BY id" ),
to:
$word_filter_plus_replacements = $wpdb->get_results( $wpdb->prepare( "SELECT * FROM " . $this->plugin_table_name . " ORDER BY id",$a ), ARRAY_A ) ;
(added dummy variable $a).
[ signature removed ]
https://www.ads-software.com/extend/plugins/word-filter-plus/
]]>Hello dear,
Thank you for this useful plugin. I was trying it the last hour, the passive mode works fine but the active mode doesn’t work :S what could the problem be!
Sandy
https://www.ads-software.com/extend/plugins/word-filter-plus/
]]>Can you please explain how to italicize a word or phrase. I copied your logic for making words bold replacing for but for some reason that didn’t work.
Thanks in advance of someone’s help.
Ami
https://www.ads-software.com/extend/plugins/word-filter-plus/
]]>If you have a regex expression than includes quotes “”
then this plugin will escape it to \”\”
and then when you update your expression (or even update another expression) it is converted to \\\”\\\” and so on.
https://www.ads-software.com/extend/plugins/word-filter-plus/
]]>How do I search for a multiline regex?
In other words where .* would include new lines?
https://www.ads-software.com/extend/plugins/word-filter-plus/
]]>Fatal error: Using $this when not in object context in wp-content/plugins/word-filter-plus/word-filter-plus.php on line 163
Cant start the Plugin on a fresh installation of wordpress. No other Plugins are active.
https://www.ads-software.com/extend/plugins/word-filter-plus/
]]>