Fernando Briano
Forum Replies Created
-
Forum: Plugins
In reply to: [List category posts] Catlist in text widget doesn't workShort codes don’t work on text widgets directly. Try something like this for that:
http://wordpress.org/plugins/shortcode-widget/Forum: Plugins
In reply to: [List category posts] won't use parametersOther users have reported this to be happening on their blogs. Can you set WP_DEBUG to true on your config file and see what the page prints?
On wp-config.php:
define('WP_DEBUG', true);More info: http://codex.wordpress.org/Debugging_in_WordPress
As you say, the same thing is happening for the default 2012 and 2013 themes, even when you disable every other plugin. And the id and thumbnail parameters are working ok, right?
Let’s see if we can find what’s going on! 🙂
Forum: Plugins
In reply to: [List category posts] Extra non-breaking space in excerptYou’re right, I hadn’t noticed the character being inserted. Did you check the “text” view when editing the post? Maybe it’s being inserted by WordPress somehow when saving the content.
Forum: Plugins
In reply to: [List category posts] Questions about layoutOk, release 0.36.2 with a fix for this. Do notice that the category count shows the count of posts for a category, not the count of posts in the list you are displaying which belong to the category.
I’ll see about that tag thing you mentioned next.
Forum: Plugins
In reply to: [List category posts] Extra non-breaking space in excerptLooks like a CSS issue. The text is cramped in the widget due to the widget’s width.
You can try something like this:
.lcp_catlist li{ font-size: 0.99em; }This makes it look good on Firefox, maybe try some other font sizes or width which may help the text have more space to avoid the breaking lines.
Forum: Plugins
In reply to: [List category posts] Questions about layoutGood catch, I’ll check it out!
Forum: Plugins
In reply to: [List category posts] Display category nameSo when you have a list of posts from certain category/ies, you want to display the name of the category next to each post title?
I guess this would make sense just when using many categories, right?
Is this something that would be useful as a parameter too?
E.g.:[catlist id=2,5,92 catname=yes]
Which would create something like:<ul class="lcp_catlist"> <li> <a href="http://localhost/wordpress/?p=217" title="Whatever">Whatever</a> - Category Name </li>Is this correct? I can add something like this for a future release.
Forum: Plugins
In reply to: [List category posts] Exclude category errorDiesector let me know if it’s working ok for you!
Forum: Plugins
In reply to: [List category posts] Questions about layoutJust wrote version 0.36.1 where I fix the catlink parameter, it’ll be up soon. When using more than one category, it used to display the title to just one of the categories. It’s fixed on this version.
Regarding the tag, do you mean displaying the post’s tag next to the title for each one of them?
BTW, thanks for so much feedback and questions, you are really helping the development of this plugin to move forward with your feedback 🙂
Forum: Plugins
In reply to: [List category posts] Can't get any of the parameters to workSorry to read that. I wish I could help figure out what is not working on your blog!
Forum: Plugins
In reply to: [List category posts] Multiple categories doesn't show listDo you have posts that belong to the three categories? The and relationship (with “+”) only shows posts which belong to all of the categories you are asking for.
I’m testing this locally now and it’s working, I only get the posts that belong to all 3 categories:
[catlist numberposts=-1 id=1+2+3]Forum: Plugins
In reply to: [List category posts] Combination of category and tagsdoesn't workI’ll check it out and see if there’s a fix.
Forum: Plugins
In reply to: [List category posts] Category AND tag conditionI’ll check this out!
Forum: Plugins
In reply to: [List category posts] Paginationtaniav,
Thanks for your feedback. It does still need some work on the way the page numbers are displayed. First should be removing the last dash. Then I should also add “previous”, “next”, “first” and “last” links.I also have to implement something not to show every page number when there’s too many pages.
But it’s good to know it’s working fine for at least one more user 🙂
Forum: Reviews
In reply to: [List category posts] Works only with 5 postsThere’s a parameter for the number of posts you want to show. It’s in the documentation here:
numberposts – Number of posts to return. Set to 0 to use the max number of posts per page. Set to -1 to remove the limit. Default: 5. Ex:
[catlist name=mycategory numberposts=10]Hope you give it another chance.
Regards,