WPKube
Forum Replies Created
-
Forum: Plugins
In reply to: [Simple Basic Contact Form] Invalid Nonce Value after upgrading to php 8.1You’re welcome @mesmer7
Forum: Plugins
In reply to: [Advanced Excerpt] Excerpt length when using custom excerptsYou’re welcome.
Just released the update, version 4.4.0

Make sure both those checkboxes are checked.
Forum: Plugins
In reply to: [Simple Basic Contact Form] Invalid Nonce Value after upgrading to php 8.1I think the most likely reason for the issue is the caching plugins.
By default nonces have a lifetime of 24 hours, after that they change.
Cached pages contain nonce values at the time of the cache, but they become invalid.
It would be best to disable cache for that page, or lower it to a couple hours if the caching plugin you use offers per-page cache settings.
Forum: Plugins
In reply to: [Simple Basic Contact Form] Invalid Nonce Value after upgrading to php 8.1Hi @mesmer7
Just tried it on your site. Chrome and FF. Didn’t get the notice.
And it shouldn’t be browser specific, it’s a WordPress PHP error. Nonces are a security measure to make sure the request (to submit the form in this case) came from the page itself and is not some kind of bot attempt to spam form submissions.
How often do you get the error, is it every time you submit?
Also, you mentioned a browser difference, but I’m assuming you are logged in as the admin in one browser and not in the other and that’s the difference, not the browsers themselves. So in the browser where you get the error, are you logged in or not?
And finally, it’s most likely a conflict with another plugin, for some reason the nonce value becomes invalid. Can you let me know which plugins are you using?
- This reply was modified 3 years, 3 months ago by WPKube.
Forum: Plugins
In reply to: [Subscribe To Comments Reloaded] Plugin no longer working with PHP 8.1Hi everyone,
This is on the to do list for testing out on Monday. Will have more info then.
Forum: Plugins
In reply to: [Advanced Excerpt] Excerpt length when using custom excerptsThanks John
Short answer, keep them both active
For the excerpts output some themes use
the_content()and some usethe_excerpt()The option allows you to allow or disallow our plugin to filter (modify) the output of those functions.
It doesn’t change how our plugin generates the excerpt, it just changes whether the plugin should do it or not.
Both
the_content()andthe_excerpt()functions are used by themes.the_excerpt()specifically outputs the excerpt of the post (either the manually applied one or it creates it from the post content)the_content()works a bit differently, on the singular page for the post it displays the full content, but on a page which lists posts (like homepage) it displays either the full content or an excerpt, depending on the settings. The tag<!--more-->is used inside of content to determine the cut-off for the excerpt.That’s not directly related to the plugin, it’s just the different ways WordPress can handle excerpts and it depends on the theme which approach is used.
If you have the checkbox for
the_content()disabled and the plugin is altering the excerpt then it means the theme usesthe_excerpt()function to output the excerpt.Forum: Plugins
In reply to: [Advanced Excerpt] Excerpt length when using custom excerpts3 options above that one.
“No custom excerpts”
But that won’t help, it’ll disregard the custom excerpt and generate one from the content.
There’s no option for it at the moment but we could add it to the list for the next update. Currently recovering from an injury so I’m not at 100% but I think it could be released sometime next week, would that work out for you?
Forum: Plugins
In reply to: [Advanced Excerpt] Excerpt length when using custom excerptsHi @dsl225
On the settings page ( WP admin > Settings > Excerpt) there’s an option called “No Custom Excerpts”. Check the checkbox. Let me know if that works as you need it.
Forum: Plugins
In reply to: [Advanced Excerpt] I want my excerpts to be centered. How can I do it?You’re welcome @kyolic
Forum: Plugins
In reply to: [Advanced Excerpt] I want my excerpts to be centered. How can I do it?You’re welcome @kyolic
Here’s the CSS (goes in WP admin > Appearance > Customize > Additional CSS):
.grid-post .post-excerpt p { text-align: center !important; }Forum: Plugins
In reply to: [Authors List] How do I open URLs in new Tab?Hi @seanrowe
WordPress automatically filters the
hrefattribute whentargetis set to_blankand gets rid of the non URL characters at the start so thehrefends up beinguser_url}So the functionality breaks.
Version 2 of the plugin is planned to be released sometime this week. All the settings are handled via options (no shortcode parameters needed) and this issue does not happen in it.
We’re doing some final tests and adjustments but 99% that it’s being by the end of this week.
Forum: Plugins
In reply to: [Subscribe To Comments Reloaded] Plugin no longer working with PHP 8.1Hi @michael8888
Thanks for the info, will test that out. At this moment I’m not sure why the issue would show up and why generating a new unique key would resolve it.
Will investigate.
Our plugin is for the regular WordPress comments.
If it’s showing up when answering then that “question answer” plugin is using the WordPress comment system for handling answers so our plugin applies the functionality there.
And I’m assuming the question submission part is a custom form they created that create a new “custom post type” submission, not a comment, so our plugin does not apply there.
But which plugin specifically? I tried the 2 plugins that I found related to “question answer” but they’re doing both the questions and answers in a custom way, not using the WordPress comments system.
Hi @jandabt
The info is stored in the post meta, since the duplicator plugin you use also duplicates the post meta the subscribers are also duplicated.
Which plugin do you use for the duplication, I’ll check if there’s anything in the settings to deactivate that or if not I’ll check the code to see if they have any filters that we can hook into to make it not duplicate the subscriber data.