WPKube
Forum Replies Created
-
Hi @jorgonfla
In the “Repeater Template” (WP admin > Ajax Load More > Repeater Templates) instead of
the_excerpt();addthe_advanced_excerpt();Forum: Plugins
In reply to: [Authors List] skip_empty not workingHi @denba
Can you try copy/pasting this:
[authors_list only_authors="no" skip_empty="no" include="72,59,117,283,148,139,70,252,103,235,194,192,320,177,244,196,308,68,64,69,225,204,51,90,105,353,53,185,207,93,98,104,112,102,113,233,425,426"]Try that and let me know if it’s still missing those few users/authors without a post.
Forum: Plugins
In reply to: [Authors List] conflict with Molongui Co-Author pluginWe’re using this to get the display name:
$name = get_the_author_meta( 'display_name', $author_id );It’s the official WordPress way to get the display name.
In the Molongui code I see that they do filter the display name but I don’t know the plugin code well enough to understand how it all works. Replicating the issue on my installation would help out a lot since I’ll have something to figure out what part in their code causes the issue, but I’m not getting the issue here.
I see they haven’t yet responded to your support request. Their input on this would help out quite a bit.
Can you try a little code modification in Molongui code? In
molongui-authorship/includes/class-post.phpon line38you’ll see:$this->loader->add_filter( 'get_the_author_display_name', $this, 'maybe_filter_the_author_display_name', 999, 3 );Add
//at the start of that to comment it out.//$this->loader->add_filter( 'get_the_author_display_name', $this, 'maybe_filter_the_author_display_name', 999, 3 );Then check if the display name in the authors list is still wrong.
Forum: Plugins
In reply to: [Authors List] Pagination doesn’t work on a bilingual (multilingual) siteYou’re welcome and thank you. No worries, happens to all of us 🙂
In my tests it didn’t switch to the Russian translation for the pagination in the URLs, it remained
/page/2, I’ll try to replicate the issue so it can be solved. Thanks for reporting it.Forum: Reviews
In reply to: [Subscribe To Comments Reloaded] Shows IPWP admin > Settings > Contact Form. It’s the last option under “General Options”, option name is “Additional Information”.
Forum: Plugins
In reply to: [Authors List] conflict with Molongui Co-Author pluginOne User Avatar plugin has been temporarily closed on November 15th pending a full review. So I can’t download it to test it out.
Few questions and things to try:
1) Can you try disabling the plugin to see if it make a difference with the name issue?
2) And in WP admin when you go to edit a user it shows the correct display name?
3) Can you try adding this in the shortcode:
after_title="{al:display_name} - {al:first_name} - {al:last_name}"
it will show display name, first name and last name just below the title/name. Do all of those show incorrectly?4) And when you deactivate the Molongui plugin do the names start showing correctly?
Forum: Plugins
In reply to: [Authors List] skip_empty not workingHi @denba
There’s a typo in there,
skipt_emptyshould beskip_emptyForum: Reviews
In reply to: [Subscribe To Comments Reloaded] Shows IPHi @fanficcomua
That’s optional, you can disable it in WP admin > Settings > Contact Form. It’s the last option under “General Options”, option name is “Additional Information”.
Forum: Plugins
In reply to: [Authors List] Pagination doesn’t work on a bilingual (multilingual) siteYou’re welcome.
The problem is in the URL generated for the pagination.
The
/page/2/part should be/страница/2/I’m not getting that issue on my install because the Russian version still uses
/page/2format so it works fine.I’m not sure where to translate that so I can get the issue and figure out a solution. Are you using Polylang PRO or the free version?
Forum: Plugins
In reply to: [Authors List] conflict with Molongui Co-Author pluginWith that shortcode and the default settings I’m not getting an issue. Do you know which settings are changed on your installation?
Do you have any other author related plugins?
And just to confirm, you are seeing the administrator’s “display name” shown for all the authors, correct?
Forum: Plugins
In reply to: [Authors List] conflict with Molongui Co-Author pluginHi @masudcu
What is the full shortcode you’re using? I installed the Molongui plugin and the names are correct, but I’m trying with the plain shortcode without any additional parameters.
Forum: Plugins
In reply to: [Authors List] Pagination doesn’t work on a bilingual (multilingual) siteThanks for reporting the issue. I’ll set up Polylang on my install and figure out what’s going on and how to resolve it.
You’re welcome.
Forum: Plugins
In reply to: [Authors List] Breaks and drops the entire siteHi @mraul
Does it show the blank page or does it just load indefinitely? If it’s loading indefinitely then it sounds like it’s going into an infinite loop.
How many authors do you have (shouldn’t be a problem but the info might help out)?
And can you send over a list of plugins you are using, maybe it’s conflicting with another plugin.
You’re welcome.
Yeah, it’s a bug in WordPress and I’m sure they’ll fix that soon. But you shouldn’t be seeing the error unless you have
WP_DEBUGset totrueinwp-config.php. If you do have it set totruethen switch it over tofalse, you don’t need that functionality activated.