WPKube
Forum Replies Created
-
Forum: Plugins
In reply to: [Subscribe To Comments Reloaded] Email address is not validWhen the plugin Akismet Anti-Spam is active, then our plugin will also use that functionality to check the validity of email addresses.
The email
someone@students.salono.edudoes not pass that Akismet check.You can update the plugin to the latest version and just change line
98insubscribe.phpfrom:if ( function_exists( 'akismet_http_post' ) ) {to:
if ( false ) {That will stop the Akismet spam check functionality for the form and it will work fine.
And we’ll most likely remove that functionality in the next update.
Forum: Plugins
In reply to: [Subscribe To Comments Reloaded] Email address is not validTry this
Forum: Plugins
In reply to: [Subscribe To Comments Reloaded] Email address is not validForum: Plugins
In reply to: [Subscribe To Comments Reloaded] Email address is not validChange that line to this:
if ( ! empty( $email ) ) { return 'test5: ' . $email; }Forum: Plugins
In reply to: [Subscribe To Comments Reloaded] Email address is not validIn
subscribe.phpon line 30 is :ob_start();Make that
return 'test5: ' . $email; ob_start();- This reply was modified 4 years, 5 months ago by WPKube.
Forum: Plugins
In reply to: [Subscribe To Comments Reloaded] Email address is not validLine
813ofwp_subscribe_reloaded.phpis:$include_post_content = include WP_PLUGIN_DIR . '/subscribe-to-comments-reloaded/templates/subscribe.php';Before that line add:
echo 'email is ' . $email; echo '<br>test3';Let me know what shows after submission.
- This reply was modified 4 years, 5 months ago by WPKube.
Forum: Plugins
In reply to: [Subscribe To Comments Reloaded] Email address is not validIn
subscribe.phpon line30is:ob_start();Make that
ob_start(); echo 'test 1';And on line 233 is:
$output = ob_get_contents();Make that:
echo 'test2'; $output = ob_get_contents();Try the form submission, does it show both
test1andtest2in there?Forum: Plugins
In reply to: [Subscribe To Comments Reloaded] Email address is not validOk. That means
request-management-link.phpwas being loaded even before200813but it simply didn’t show up as an error because in that version we weren’t checking if the email address is connected to an existing subscription.That file is not supposed to load.
On line
869inwp_subscribe_reloaded.php(it’s a file at the top level, so it’swp-content/plugins/subscribe-to-comments-reloaded/wp_subscribe_reloaded.php) you’ll see:if (empty($include_post_content)) {Change that to:
if ( empty($include_post_content) && empty( $action ) ) {Then try again.
If the error does not show up, update to the latest version of the whole plugin and apply that last change (the one mentioned just above) to the latest version and try the form again.
- This reply was modified 4 years, 5 months ago by WPKube.
Forum: Plugins
In reply to: [Subscribe To Comments Reloaded] Email address is not validGreat, now we can add changes that happened after that version (the changes that can be related to the issue) one by one to see which one will get the issue to show up.
First change that was done was on
request-management-link.phpfile. Replace that file with this https://github.com/stcr/subscribe-to-comments-reloaded/blob/271444527e67a99ccf416771b90156915c729860/src/templates/request-management-link.phpOnce you do that try the form. Let me know if the issue shows up.
- This reply was modified 4 years, 5 months ago by WPKube.
Forum: Plugins
In reply to: [Cool Tag Cloud] Can we list categories instead of tags?Hi @a4jpcom
For categories you should put
taxonomy="category"It uses the official names that WordPress applies. The name of the taxonomy for categories is “category” and for tags it’s “post_tag”
You can see those names in the URL when you go to the listing of categories/tags in the WordPress admin.
http://example.com/wp-admin/edit-tags.php?taxonomy=category. It’s the last parttaxonomy=categoryForum: Plugins
In reply to: [Authors List] Incorrect Amount DisplayedHi @bigsimon555
Can you send over the URL to the pages where you have the shortcode? Seeing it might give me an idea as to what is happening.
Forum: Plugins
In reply to: [Subscribe To Comments Reloaded] Email address is not validUse all the files from
200813. No files should be from the latest version.Sorry, I should have been more clear. When I said install version
200813I meant the whole plugin should be200813, not a specific file.Forum: Plugins
In reply to: [Subscribe To Comments Reloaded] Email address is not validThis is what I’m getting:

But there was no reCAPTCHA functionality in version
200813so that can’t happen.Are you sure version ‘200813` is installed at the moment?
Can you copy/paste the contents of the file
request-management-link.phphere?Forum: Plugins
In reply to: [Subscribe To Comments Reloaded] Email address is not validAt the moment you don’t have version
200813, I see reCAPTCHA in there, that functionality was not part of200813.Please install
200813and don’t update. Let me know when you install it. I want to test it on your site.Forum: Plugins
In reply to: [Simple Basic Contact Form] Email black listHi @titsmaker
Will add it to the to do list.