Fernando Briano
Forum Replies Created
-
Is it possible that you’ve accidentally installed the plugin twice? Since the folder there is
List-Categories-master, it looks like you’ve downloaded it from GitHub and uploaded it to your server and then maybe tried installing it from your site’s dashboard too?Forum: Plugins
In reply to: [List category posts] Compatibility with WordPress 4.8.1The plugin has been tested and works with WordPress up to 4.9.
Forum: Plugins
In reply to: [List category posts] Plugin doesn’t support other languagesThis is apparently an issue with your database configuration. I’ve seen this before here: https://wordpress.org/support/topic/sort-by-post-title-wrong-order-with-swedish-characters/
Please let me know if this fixes your issue and I’ll close the report and add it to the FAQ.
Forum: Plugins
In reply to: [List category posts] Custom fields with value 0 not workingThis has been fixed on version 0.72, thanks for reporting it!
Forum: Reviews
In reply to: [List category posts] waste of timeDid you read the documentation? There’s a parameter you can use in the shortcode to show the content from your posts:
content – WARNING: If you want to show the content on your listed posts, you might want to do this from a new Page Template or a Custom Post Type template. Using this parameter is discouraged, you can have memory issues as well as infinite loop situations when you’re displaying a post that’s using List Category Posts. You have been warned. Usage:
yes – Show the excerpt or full content of the post. If there’s a <!–more–> tag in the post, then it will behave just as WordPress does: only show the content previous to the more tag. Default is ‘no’. Ex: [catlist content=yes]
full – Show the full content of the post regardless of whether there is a <!–more–> tag in the post. Ex: [catlist content=full]
Forum: Plugins
In reply to: [List category posts] How to change the colour of the catlist display fontHi Antonius,
Unless you’ve set a specific class named “lcp_catlink”, that doesn’t exist by default. The right class islcp_catlist. You can change the color with this css code:.lcp_catlist{ color: #ffffff; }You may want to include the
atag there for the links to posts to have that color too:.lcp_catlist a{ color: #ffffff; }Hope that’s what you were looking for. Cheers!
Forum: Plugins
In reply to: [List categories] Show lists without linksThere is no option for doing that, but you can accomplish it with CSS. The categories list is displayed inside a li tag with the ‘categories’ class. So you could just add this to your theme’s CSS file:
li.categories a{ pointer-events: none; cursor: default; }Forum: Plugins
In reply to: [List categories] Enhancing the formatThis question belongs in the List Category Posts support forum, not this plugin’s forum. Most of what you need can be found in the docs.
Forum: Plugins
In reply to: [List categories] display only subcategories of a given categoryHi, yes you can list the subcategories of a given category. Just use the
child_ofparameter:
[categories orderby=count child_of=ID]Where ID is the id of
category1in your case.- This reply was modified 9 years, 8 months ago by Fernando Briano.
Forum: Plugins
In reply to: [List category posts] Text about template system broken in OTHER NOTES tabThe readme.txt file included in the plugin has the complete text. It looks like wordpress.org cuts the text to a limit. That’s great, I’ll have to move the documentation elsewhere to make it complete. This sucks 🙁
Forum: Plugins
In reply to: [List category posts] catlist shortcode not workingSheelendra, please do not post in someone else’s thread. Start your own topic. Your issue is no way related to what’s being discussed here and it can easily be solved by searching for “ordered list” in the documentation.
Forum: Plugins
In reply to: [List category posts] Dutch Translation RequestHi Marcel,
I have no idea if I can make anyone an editor in GlotPress. I even sent some translations their way and they’ve been on a “Waiting” state for months. I find it pretty cumbersome.What would be the process to make the request and assign a user to a specific language?
Thanks!
Forum: Plugins
In reply to: [List category posts] catlist shortcode not workinggiotaki if these are Parent Categories, there was a bug in 0.67 that didn’t show posts from child categories. Version 0.67.1 should fix that. Let me know if that’s the issue.
Forum: Plugins
In reply to: [List category posts] orderby=title and international charactersxLiten, check this post with a similar issue, might help.
Forum: Plugins
In reply to: [List category posts] AAAAgh! Plugin broken!dlongm01 the version with the issue was 0.67. If you tried older versions and the latest update, and it still doesn’t work for you, then there might be another plugin causing issues in your blog. Or something in your blog might be broken.
Writing the plugin’s code, maintaining it, adding new features and answering support issues on this forum costs me several hours too. I don’t get paid for it, I just do it. I do feel irritated when these issues happen and I don’t have free time to fix them. I also feel irritated when people complain about something open source developers are doing for free. So have some patience.
Feel free to stop relying on plugin authors who are doing this for free and hire a freelance programmer to fix the issues you’re having in your blog, it’s what’s great about Free Software, anyone can fix the code ¯\_(ツ)_/¯
WordPress is a complex ecosystem, the core has its own functionality, the themes add more, and every plugin you install affects the whole system. So this stuff happens.
If you’re running really important blogs where human life is at risk if a plugin stops working, you should have a staging server where you test all the plugin updates first, and once you’re sure they’re working, replicate the same environment in your production server. That way you won’t panic when an update breaks a plugin.