WPKube
Forum Replies Created
-
Forum: Plugins
In reply to: [Authors List] Sort by randomHi,
We’ll add the option for random in an update this week.
Forum: Plugins
In reply to: [Authors List] Blank AvatarsHi @sueyrad
This one is marked as resolved, I assume you figured out what the issue was, correct?
Hi,
The first URL you sent shows a 404 page.
The second URL shows the archives for a category. But I’m not seeing the tag cloud from our plugin being used there.
Has something changed in the meantime? Can you share some more info on the issue?
Hi,
There’s a function for that, you can find more info over at https://subscribe-reloaded.com/function-to-add-subscribers-manually/
Hi,
Does the issue go away when Advanced Excerpt plugin is disabled?
Forum: Plugins
In reply to: [Advanced Excerpt] Sidebar widgets scrambled on archive pagesHi @punkaun
What happens a bit further down the page?
If you scroll down to the last post (of the main blog posts listing) does it look fine and just the sidebar goes scrambled or are there more issues visible down there?
Hi @ibiza69
No, sorry, our plugin is only for manipulating the output of the excerpt, we don’t alter the method in which it’s created.
I just tried looking for a different plugin that might help you with that but I wasn’t able to find anything, which kind of makes me think that it might not be possible, there’s usually a plugin for everything 🙂
Did you have any luck in finding a plugin for that?
Hi @juanwp22
Yeah, we’ll definitely look into that. Probably won’t change it by default but we’ll add an option to show the “X” icon instead of the old twitter icon.
The “GDPR Message” options supports adding links/anchors using HTML.
Here’s an example of how it can be added:
See our <a href="https://example.com/">privacy policy</a> to learn more how we use data.- This reply was modified 2 years, 7 months ago by WPKube.
Forum: Plugins
In reply to: [Advanced Excerpt] Extension not workingHi @vuichard
Thanks for sharing the solution.
Since it’s
add_filterthen it’s expecting to return a content, not echo. The echo still executes at the point where the filter is called but it could cause issues.Instead of
echo the_excerpt()tryreturn get_the_excerpt()But I’m not too familiar with the theme so I’m not sure if that’ll work out, if it doesn’t let me know and I’ll take a closer look.
Thanks @butesa
Will check this out and make it part of the next update.
Forum: Plugins
In reply to: [Subscribe To Comments Reloaded] Deprecated message PHP 8.2.xHi @mbrsolution
Thanks for bringing our attention to it, it’ll be sorted out.
Forum: Plugins
In reply to: [Authors List] count_text none single plural – stopped workingHi @jackey
Thanks for reporting the issue. Tested and confirmed.
We’ll get that sorted out in an update this week.
Forum: Plugins
In reply to: [Authors List] Leading an trailing spaces in outputHi @jackey
Browsers ignore white spaces at the start and end of an element, they’re not shown when the page is rendered, so those do not influence the alignment.
In the case of the excerpt, you currently have that set to center alignment.
As for the list items, that’s due to the custom list item markers that you have.
The markers are added in a way that they’re actually part of the list item content and then with margin left they’re offset to the left so they appear as if they are outside of the list item. But they’re part of the first line of text and push it to the right a bit.
My suggestion is adding the following CSS code:
.authors-list-posts-item { position: relative; } ul.authors-list-posts li:before { position: absolute; top: 0; left: 0; }The position absolute on the marker would make it so it does not influence the positioning of the rest of the text.
Forum: Plugins
In reply to: [Subscribe To Comments Reloaded] Protocol error in management linksHi @akalien
Answered on the GitHub ticket you posted at https://github.com/stcr/subscribe-to-comments-reloaded/issues/778