WPKube
Forum Replies Created
-
Hi @cfibanez
The plugin does not use
uasortPHP function, that’s used in WordPress atwp-includes/category-template.phpon line903(and901) which is called when the order of tags is not random. It then usesstrnatcasecmpfunction which returns-1or0or1depending on which value in the comparison is larger. So it does not return a Boolean value (0 or 1) it returns an Integer value.So it’s a bit of a weird issue.
Which version of PHP are you using? It’s PHP 8, but what’s the full version number?
Also, do you get the error with the regular WordPress tags widget?
Forum: Plugins
In reply to: [Simple Basic Contact Form] Change the background fields colourHappy to hear that. You’re welcome.
Forum: Plugins
In reply to: [Subscribe To Comments Reloaded] Error when installing pluginHi,
It sometimes happens to me as well π There’s a support request on another plugin of ours which I saw was unanswered today but I remember responding to it.
And now itβs just refreshing and going to another page on the site.
Can’t say for sure, the plugin does not redirect so it could be WordPress (not finding anything on the URL so it does a 301 redirect to a similar URL). Redirect Checker gives more info on that. If you decide to use the plugin let me know and we can check it out.
Forum: Plugins
In reply to: [Authors List] Breaks and drops the entire siteForum: Plugins
In reply to: [Simple Basic Contact Form] Change the background fields colourI don’t see that CSS code loaded on the page.
Can you make a screenshot of the whole area where the custom CSS is added (Appearance > Customize > Additional CSS)?
Hi @melisoula
I tried the subscription form on the URL you supplied and it went fine. Where are you getting that message, can you send over a screenshot?
Forum: Plugins
In reply to: [Subscribe To Comments Reloaded] Frontend is not translatedWordPress might not be picking up your translation files, there’s other translations that it might be using instead of yours. With the Loco Translate plugin you can “force it” to use your translations.
Forum: Plugins
In reply to: [Authors List] Add paginationYou’re welcome.
The developer probably restricted it because of the way the columns system work in the plugin. All items except the last in the row have a right margin. If it’s 3 columns every 3rd item doesn’t have the margin. So if some items are hidden (the region filters) those go out of sync and can end up with weird layout (for example 2nd item having no right margin instead of the 3rd).
Won’t be an issue for much longer, we’ll soon be switching the columns system over to a
flexapproach instead of afloat, in which case the issue won’t happen.Forum: Plugins
In reply to: [Advanced Excerpt] Possible to get it to work with “Display Posts Shortcode”?You’re welcome π
Forum: Plugins
In reply to: [Simple Basic Contact Form] Change the background fields colourThe theme might have some CSS rules for inputs that take priority over the CSS I sent over.
Try this:
.scf input[type="text"], .scf input[type="email"], .scf textarea { background-color: #dfdfdf !important; }If it doesn’t work, send over the URL to the page with the form, I’ll need to check it in the developer tools to see what’s going on.
Hi @mariussmit
You can increase the font size in the widget options, the “Smallest font size” option.
But I just checked the URL you supplied and it shows “Page is mobile friendly” (the tags are on the page at the moment).
Forum: Plugins
In reply to: [Simple Basic Contact Form] Change the background fields colourThe plugin doesn’t modify the inputs, the styling comes from the theme.
But if you want to modify specifically the inputs from our plugin, you can use:
.scf input[type="text"], .scf input[type="email"], .scf textarea { background-color: #hexcode; }Forum: Plugins
In reply to: [Advanced Excerpt] Possible to get it to work with “Display Posts Shortcode”?Hi @azragh
There’s 2 limitations applied. One is that it doesn’t get triggered on static pages “single post” and the other is that it only affects the main query.
Those 2 limitations are there to avoid infinite loops and turning full content into excerpts.
Since you’re going with your own code to output those posts, you can use the built in function
the_advanced_excerpt.So, just replace
the_excerpt();withthe_advanced_excerpt();Forum: Plugins
In reply to: [Authors List] Add filter for authors listYou’re welcome.
Forum: Plugins
In reply to: [Authors List] Add paginationHi @dgracey
Since the columns don’t work either it sounds like the quotes are wrong, WordPress only recognizes the plain
"for shortcode attributes.Can you try copy/pasting this:
[authors_list style="1" columns="4" pagination="yes" amount="1" show_count="no" show_bio="yes" roles="thc_member" authors_only="no" after_bio="{al:mepr_bio}" before_bio="{al:mepr_county}"]When you put quotes
"here on the forum they get changed toβandβbut looking at the code you sent there’s 3 types, other than the 2 mentioned there’sβ³as well which further points me in that quotes issue.