WPKube
Forum Replies Created
-
Forum: Plugins
In reply to: [Authors List] Issue with error message “Deprecated: WP_User_Query…”You’re welcome @liviah
Forum: Plugins
In reply to: [Advanced Excerpt] “Read more” with custom excerptYou’re welcome.
Forum: Plugins
In reply to: [Advanced Excerpt] “Read more” with custom excerptHi @dsl225
In the settings (WP admin > Settings > Excerpt), for the “Read More Link” there’s a checkbox “Add the link even if a custom excerpt is shown”, that will add “read more” in all cases.
Forum: Plugins
In reply to: [Advanced Excerpt] Clashes with PODs autotemplatesIt’s just a regular page (WP admin > Pages) so as far as WordPress (and the plugin) thinks it’s not an archive.
We could add an additional text field for the “Disable on” functionality which would allow entering IDs of pages (a comma separated list) on which the plugin’s functionality would be disabled on.
I’ll pass that on to the developer, but I can’t say for sure when it would be implemented, some of our other plugins have updates scheduled so those need to be finished first.
Forum: Plugins
In reply to: [Subscribe To Comments Reloaded] DocumentationHi @dimitris33
There’s no “external” documentation.
All the options in the admin have the (?) icon which when clicked shows more info about the options.
Is there anything specific that you’re having trouble with that we can clarify?
Forum: Plugins
In reply to: [Authors List] Add a trailing slash to author URLHi @ante1974
The
{al:FIELD_NAME}simply outputs the a value of a user meta field, it doesn’t do any modifications to the value. The only fix is to correct the URLs that are set for that user field.Or if they’re all missing the slash you could just add it in the shortcode
href="{al:user_url}/"As for the class, I tried the same shortcode you are using and the class is there. Can you send over the URL to the page where you have the authors list, seeing it might give me an idea as to what’s going on.
Forum: Plugins
In reply to: [Authors List] Issue with error message “Deprecated: WP_User_Query…”Hi @liviah
An update is coming this week to resolve that.
But you shouldn’t be getting “deprecated notices” unless you have
WP_DEBUGinwp-config.phpset totrue.Usually that’s set to
falseunless some debugging is done.Forum: Plugins
In reply to: [Authors List] Can’t get title to show upHi @maialee
That’s weird.
But it might not be related to Elementor, I tried it with Elementor (free version) on my install and it worked fine (the page is set as front page).
It might be a conflict with a different plugin that happens to make some adjustments to WordPress authors functionality on the homepage.
So can you try a little test. Create a regular page (non-elementor) with the same shortcode and set it as the front page. Do the titles show up?
Forum: Plugins
In reply to: [Advanced Excerpt] Clashes with PODs autotemplatesCan you send over the URL to the archive page? The classes on the body tag of the page will give me more info about the page.
Forum: Plugins
In reply to: [Advanced Excerpt] Clashes with PODs autotemplatesHi @delanthear
Does the issue go away if you disable it for archives? Option
Disable onat the end ofWP admin > Settings > ExcerptForum: Plugins
In reply to: [Social Sharing Plugin - Kiwi] wp-admin Warning: failed to open streamHi @robwatsondz
Sorry for the issues.
Wait for the version 2.1.5 before updating. It will be released in a few days.
Forum: Plugins
In reply to: [Simple Basic Contact Form] Carbon Message ConfirmationHi @christof15
You’re welcome and thank you, happy to hear that.
That text is localized, so it can be modified using any WordPress theme/plugin translation method you prefer. I generally use Loco Translate for that purpose, but you can use any method you prefer.
Alternatively there’s a CSS approach:
.scf_carbon { font-size: 0; } .scf_carbon::after { content: 'Your message here'; font-size: 14px; }Forum: Plugins
In reply to: [Cool Tag Cloud] Custom Image style?You’re welcome
Forum: Plugins
In reply to: [Cool Tag Cloud] Custom Image style?There’s an update coming this week that will have the option to select a “plain” style.
For that style the plugin won’t apply any special styling (CSS), so you can style it in a way you like.
Forum: Plugins
In reply to: [Cool Tag Cloud] Custom Image style?You don’t need to modify the plugin files directly. Just apply your own CSS to replace the default image for one of the existing colors.
So for example you can modify the “silver” to use your own images:
.cool-tag-cloud .ctcsilver .ctcleft a.tag-cloud-link, .cool-tag-cloud .ctcsilver .ctcleft a.tag-cloud-link:after { background-image: url("PATH_TO_IMAGE"); } .cool-tag-cloud .ctcdefault .ctcleft a:hover, .cool-tag-cloud .ctcdefault .ctcleft a:hover:after { background-image: url("PATH_TO_HOVER_IMAGE"); }