WPKube
Forum Replies Created
-
Forum: Plugins
In reply to: [Authors List] How to hide Admin from the authors listHi @marko6548
The admin ID is usually 1, it’s the first user. Unless the administrator you want to hide is made after the original first admin user.
[authors_list exclude="1"]Alternatively you can define the specific roles you want to use:
[authors_list roles="editor,author"]That would exclude the users with administrator roles.
Hi @lucasw89
No special advantages. The only thing is that the virtual page can sometimes conflict with other plugins since we’re tricking WordPress into thinking there’s a real page at that URL. But the conflicts are rare.
Hi @lucasw89
Sorry for the wait.
Can you try creating a real page for the comments subscription management instead of the default fake/virtual page?
- Go to WP Admin > StCR > Management Page
- Set “Virtual management page” to “No” and save changes
- Go to WP admin > Pages > Add New and create a page called
Comment subscriptions, the permalink should becomment-subscriptions - For the content of the page add
[stcr_management_page]
Forum: Plugins
In reply to: [Subscribe To Comments Reloaded] PHP error with mp3-music-player-by-sonaarYou’re welcome.
Can’t say for sure when the update is coming. Since that fix works and this is an edge case scenario (possibly only conflicting with that MP3 plugin) we won’t release an update specifically to solve that issue. The fix for that issue will be part of a larger update, but can’t say for sure when.
Forum: Plugins
In reply to: [Subscribe To Comments Reloaded] PHP error with mp3-music-player-by-sonaarHi @ep2012
You’re welcome.
You’ll get the error if you visit the comment subscription management page:
example.com/comment-subscriptions/I’m not 100% sure what code in that MP3 plugin is the cause but it’s related to the WordPress filter the_posts (filters array of retrieved posts)
Our plugin hooks in there to make the virtual page.
But something in the MP3 plugin makes WP trigger that filter at a point when the global $wp_query var which holds the posts query info is empty at that point and that causes a problem.
It shouldn’t be empty.
So the solution is simply to return if it’s empty.
Just after this line should be this:
if ( ! $wp_query ) return;Forum: Plugins
In reply to: [Subscribe To Comments Reloaded] PHP error with mp3-music-player-by-sonaarHi @ep2012
I see the issue. We’ll release an update to fix that.
In the meantime can you try creating a real page instead of a virtual page and check if the issue goes away?
- Go to WP Admin > StCR > Management Page
- Set “Virtual management page” to “No” and save changes
- Go to WP admin > Pages > Add New and create a page called
Comment subscriptions, the permalink should becomment-subscriptions - For the content of the page add
[stcr_management_page]
- This reply was modified 3 years, 2 months ago by WPKube.
You’re welcome, happy to hear it worked out.
It seems MailerLite no longer offers the regular form submission approach, it’s now JavaScript/AJAX
We’ll make adjustments and make it work with that system. The update should be released by the end of this week.
Hi @siteducky
Try adding this in WP admin > Appearance > CUstomize > Additional CSS:
.entry-summary .two_third { width: 100%; }Forum: Plugins
In reply to: [Simple Basic Contact Form] Cloudflare TurnstileHi,
Thanks.
Correct, there’s no integration for it yet. We’ll look into adding that in an update.
Forum: Plugins
In reply to: [Social Sharing Plugin - Kiwi] impression on certain pagesHi @aga2442
Perfmatters is a paid plugin, no fre version, so unfortunately we can’t test it out.
Did you contact their support as well, did they say what might be the issue?
Forum: Plugins
In reply to: [Title and Nofollow For Links (Classic Editor)] Any chance of an update?Forum: Plugins
In reply to: [Title and Nofollow For Links (Classic Editor)] Any chance of an update?Forum: Plugins
In reply to: [Advanced Excerpt] Excerpt length when using custom excerptsOh, you’re right.
Silly mistake, I didn’t update the minified JS file with the changes. I have SCRIPT_DEBUG turned on so it’s loading the unminified file for me.
Will sort that out in the next update.
Thanks for pointing it out.
Forum: Plugins
In reply to: [Advanced Excerpt] Excerpt length when using custom excerptsYou’re welcome @dsl225
That’s most likely a cache issue, your browser still using the old JavaScript file. If you do a hard refresh CTRL + F5 a few times does it get sorted out?