WPKube
Forum Replies Created
-
Forum: Plugins
In reply to: [Cool Tag Cloud] only show tags on this PAGEHi @rmblfish
For the
on_single_displayset the value tolocal[cool_tag_cloud on_single_display="local"]Forum: Plugins
In reply to: [Subscribe To Comments Reloaded] Missing translation stringThanks for bringing it to our attention, we’ll get that sorted out in the next update.
Forum: Plugins
In reply to: [Advanced Excerpt] Possible issues with the plugin and Elementor?You’re welcome.
Forum: Plugins
In reply to: [Advanced Excerpt] Possible issues with the plugin and Elementor?Hi @stevenj
The plugin skips regular pages (the ones that are in WP admin > Pages).
The reason for that is so it doesn’t filter the actual page content output. Excerpts use both
the_content()andthe_excerpt()so the plugin filters both of those.In this specific case all those sections you created with Elementor are coming from
the_content()and then inside of that is the posts grid which also has eitherthe_content()orthe_excerpt()to output those excerpts. Visually we can figure out which should be filtered, but the plugin can’t figure it out, so it would end up just filtering the whole output.That’s why it filters archives but not regular pages.
And unfortunately, at the moment we do not have a solution for that.
Forum: Plugins
In reply to: [Advanced Excerpt] Oldest post excerpt repeated in footerThe problem is that a single thing edited out of place could cause a “fatal error” and bring the site down.
So I wouldn’t suggest doing it via the file editor in the WP admin. Only if you can do it via an FTP client or the file editor in your hosting control panel. That way you can revert back the change that caused the issue.
That being said, the change I’d like to try is in
wp-content/plugins/advanced-excerpt/class/advanced-excerpt.phpOn lines
111-113you’ll see:if ( function_exists( 'is_bbpress' ) && is_bbpress() ) { return; }Just after that part add this:
if ( ! is_main_query() ) { return; }Forum: Plugins
In reply to: [Authors List] Author’s bio to the right of their imageHi @danieldau
Thanks for bringing it to our attention, we’ll add the style 4 to the description.
Forum: Plugins
In reply to: [Advanced Excerpt] Strip attributes or add paragraphsIf the spacing is the only problem then that could be resolved with a bit of CSS, there’s most likely a wrapper div added by the theme to hold the excerpt, usually it’s with a specific class, so it can be targeted with CSS and spacing added.
Can you send over the URL to the site?
Forum: Plugins
In reply to: [Advanced Excerpt] Oldest post excerpt repeated in footerHi @mallo82
It’s a paid theme so we can’t set it up on our installation and figure out what’s going on.
Do you have some experience with editing plugin files? If you do I could let you know what to change so we can test it out that way.
Forum: Plugins
In reply to: [Social Sharing Plugin - Kiwi] Share counterHi @darieraclau
The counts are based on the official share counts from those social networks.
Facebook and Reddit have those. Twitter used to have share counts for URLs until a few years ago, they removed it.
Forum: Plugins
In reply to: [Subscribe To Comments Reloaded] GDPR issue with subscribeHi @cmorph
It’s added on the to do list.
Forum: Plugins
In reply to: [Advanced Excerpt] Excerpt gridNo, sorry. Generally “excerpt length” related options are one of the basic options that get added to “post grid” plugins, so they handle the excerpt on their side.
Forum: Plugins
In reply to: [Cool Tag Cloud] Display Tags of current archive pageYou’re welcome, happy to hear it worked out 🙂
Forum: Plugins
In reply to: [Cool Tag Cloud] Display Tags of current archive pageHi @vinem
The part of the code that was modified by the other user remains the same. It’s the whole if statement that starts around line 70:
if ( $l_tag_params['on_single_display'] == 'local' && ( is_single() || is_singular( array( 'post', 'page' ) ) ) ) { ... }That whole part gets replaced by the code that was included by the user.
Keep in mind that section of the code is for the widget, if you use the shortcode it’s the same if statement but around line 680.
Forum: Plugins
In reply to: [Advanced Excerpt] Excerpt gridHi,
From what I see that’s a Visual Composer grid. Page builders usually handle the excerpts in their own way (to be able to allow options for them) so our plugin can’t affect them since it relies on the regular WordPress excerpt output.
Forum: Plugins
In reply to: [Authors List] Add a trailing slash to author URLYou’re welcome @ante1974