WPKube
Forum Replies Created
-
Forum: Plugins
In reply to: [Authors List] Bug in Twitter Username fieldHi @jibril84
From what I understand you managed to figure out the issue, correct?
Forum: Plugins
In reply to: [Subscribe To Comments Reloaded] Notification to the readerCorrect, if the comment author choses to be notified on replies then the notifications will be sent for all replies that comment receives .
At the moment there is no option to limit the notifications only for admin replies.
But if you have some experience with modifying PHP code I could give you some pointers on what needs to be changed to make it work that way.
- This reply was modified 3 years, 1 month ago by WPKube.
Forum: Plugins
In reply to: [Advanced Excerpt] Advanced Excerpt in WordPress Querry Loop blockHi @sukinoz
Unfortunately yeah, Gutenberg handles things a bit differently. This plugin is meant for the “old way” of handling things.
I looked into it some time ago but there was no way to filter out the excerpt output. I’ll look into that again, maybe they’ve changed some things.
Will have some more info in a day or two.
Forum: Plugins
In reply to: [Advanced Excerpt] Is it compatible with CosmosWP theme?You’re welcome @wccmcd
Oh, you’re right, there’s a free version. Yesterday I googled it, clicked the first result and the site didn’t mention a free version.
But yeah, I see the free version now.
I activated the theme to test it out and for the default blog posts listing it’s working fine. Which makes sense, that’s all the default behavior that themes are required to have and is what our plugin was originally meant to work with.
I then tried importing the “Blog 1” demo. Doesn’t work on it. It’s a custom Gutenberg block and it doesn’t seem to have the regular excerpt filters applied.
That Gutenberg block seems to come from the “Gutentor Blocks” plugin. https://wordpress.org/plugins/gutentor/
So the theme author probably won’t be able to assist much with this.
I’ll have to dig a bit deeper in there and see how they handle things and figure out if there’s something that can be done to make it compatible.
Forum: Plugins
In reply to: [Subscribe To Comments Reloaded] Notification to the readerHi @meike297
This plugin allows those who post a comment to subscribe to be notified when when anyone replies to their comment. They can also subscribe to all comments (not just replies to their own comments).
There’s no option at the moment to only send the notifications if an administrator replies. We do have that on the to do list but I can’t say for sure when it will be implemented.
Forum: Plugins
In reply to: [Advanced Excerpt] Is it compatible with CosmosWP theme?Hi @wccmcd
It’s a paid theme so unfortunately I’m not able to test it.
But if the theme has options to modify the excerpt length then it means they handle it in their own way in which case our plugin won’t work since it targets the WordPress way of displaying the excerpts.
Does the theme have options related to excerpts?
Forum: Plugins
In reply to: [Authors List] Author list – 5 columnsYou’re welcome 🙂
Forum: Plugins
In reply to: [Authors List] Author list – 5 columnsHi @wellmelo
Replace this code:
.authors-list-item:nth-child(n+6) { display: none !important; }With this code:
body.home .authors-list-item:nth-child(n+6) { display: none !important; }Forum: Plugins
In reply to: [Authors List] Cant find the pagination option in new versionThanks for the suggestions. We’ll sort those out.
Forum: Plugins
In reply to: [Authors List] TikTok in social media listYou’re welcome.
Forum: Plugins
In reply to: [Authors List] Author list – 5 columnsYou’re welcome and thank you.
Forum: Plugins
In reply to: [Authors List] Cant find the pagination option in new versionYou’re welcome and thanks.
Ohhh, you’re right, the pagination does not take into account excluded authors. I’ll take a look at this and figure out how to resolve it.
But this shouldn’t be an issue specific to the latest changes, this issue should have been present in version 1 as well.
In any case, will test it out and an update will be released. Will try to get that update out tomorrow.
Forum: Plugins
In reply to: [Authors List] Translation questionYou’re welcome.
Forum: Plugins
In reply to: [Authors List] Author list – 5 columnsYou’re welcome.
Try this shortcode:
[authors_list style="1" columns="4" show_bio="no" amount="20" orderby="post_date" latest_post_after="360" show_count="no" after_title="{alf:posts type=plain amount=3}" exclude="1,30"]And add this CSS code:
.authors-list-item:nth-child(n+6) { display: none !important; }Forum: Plugins
In reply to: [Authors List] Author list – 5 columnsYou’re welcome, happy to hear that.
As for the 5th item being stuck to the 4th item. Remove the CSS code you added. Add this:
@media only screen and (min-width:760px) { .authors-list-cols-dir-horizontal.authors-list-cols-4 .authors-list-col:nth-child(4n) { margin-right: 3.42% !important; } .authors-list-cols-dir-horizontal.authors-list-cols-4 .authors-list-col:nth-child(5n){ margin-right: 0 !important; } .authors-list-cols-dir-horizontal .authors-list-col-3 { width: 17.264% !important; } .authors-list-cols-dir-horizontal.authors-list-cols-4 .authors-list-col:nth-child(4n+1) { clear: none !important; } .authors-list-cols-dir-horizontal.authors-list-cols-4 .authors-list-col:nth-child(5n+1) { clear: both !important;; } }As for the issue with order, try this:
[authors_list style="1" columns="4" show_bio="no" amount="5" orderby="post_date" latest_post_after="360" show_count="no" after_title="{alf:posts type=plain amount=3}" exclude="1,30" pagination="yes"]And also add this CSS code:
.authors-list-pagination { display: none; }