Fernando Briano
Forum Replies Created
-
Forum: Plugins
In reply to: [List category posts] missing spaceYep, I saw it. I’ll release a new bugfix release soon and I’ll include a fix for this. In the meantime – if you’re feeling brave – you can change the code with the plugin editor on your WordPress. On the file
include/CatListDisplayer.phpline 285, add this:
$info = " " . $this->catlist->get_date_to_show($single);Thanks for reporting this!
Cheers,Forum: Plugins
In reply to: [List category posts] Excludeposts no longer works 0.38 – 0.39Thanks for all this info. I’ve been checking this out and the issue is because I changed the way to retrieve posts from the “get_posts” function to using “WP_Query”. I found I had to change some code to make the exclude posts parameter work, but haven’t made it work yet. But I’m on track with it, so I’ll have more news as soon as I have more time to debug and fix it!
Forum: Plugins
In reply to: [List category posts] Excludeposts no longer works 0.38 – 0.39Can you please check if this is working *without* the template? Thanks.
Forum: Plugins
In reply to: [List category posts] Setting Title ClassJust released a fix for this and other bugs and checked the compatibility with WordPress 3.8. Please update to version 0.40 and let me know if it’s working ok now.
Thanks!
Forum: Plugins
In reply to: [List category posts] numposts in admin settings somewhere?This is a feature that’s on the to-do list for a future release. I’ll let you know once it’s out!
Thanks,
Forum: Plugins
In reply to: [List category posts] Pagination with custom templateI marked your other topic as resolved, so we can follow this up here.
I have to check out the pagination with custom templates, I’ll let you know what I find here.
Regarding the css, I’m using WordPress’ function wp_enqueue_style, it should work correctly. Testing it (now with WordPress 3.8 latest nightly), it enqueues the CSS in the header. Could be because of a plugin or something specific from the theme?
Forum: Plugins
In reply to: [List category posts] Excludeposts no longer works 0.38 – 0.39I’ll look into this further this week. Thanks for reporting it!
Forum: Plugins
In reply to: [List category posts] Hack post title adding elementsacnezone: Please open a new thread for your question.
danicasati: I’ll look into that.
Forum: Plugins
In reply to: [List category posts] Hack post title adding elements😀
Let me know what you think!
Regards,Forum: Plugins
In reply to: [List category posts] how to put the thumbnail at beginning of lineLet me know how it goes! 🙂
Forum: Plugins
In reply to: [List category posts] how to put the thumbnail at beginning of lineCheck out the FAQ where I added a way to get the thumbnails next to the title.
Forum: Plugins
In reply to: [List category posts] Hack post title adding elementsThe Vagrant box is mostly oriented at developers who want to hack on the plugin without having to set up Apache + PHP + MySQL on their machines. It’s not that complex, following the documentation is pretty straight forward if you are familiar with GNU/Linux.
Back to this feature: It’s implemented, just update to version 0.39 and use the
post_suffixparameter:post_suffix – Pass a string to this parameter to display the string after every post title:
[catlist numberposts=-1 post_suffix="Hello World"]Will create something like:
<ul class="lcp_catlist" id=lcp_instance_0> <li> <a href="http://127.0.0.1:8080/wordpress/?p=42" title="WordPress"> WordPress </a> Hello World </li>Forum: Plugins
In reply to: [List category posts] Instructions for new VAGRANT BOX feature?Hi, yes, I included some instructions on the GitHub page for the plugin:
https://github.com/picandocodigo/List-Category-Posts#developmentIf you don’t know how to use Vagrant yet, there’s a Getting started tutorial that takes you a few minutes to read and gives you a great view of how it works.
Forum: Plugins
In reply to: [List category posts] PaginationPagination is now available on version 0.38.
With this feature, I’m really close to releasing version 1.0 of this plugin.
Thanks everyone for your feedback and support, hope you enjoy this new version 🙂
Forum: Plugins
In reply to: [List category posts] The 'class' identifier in LCPI think the template code replaces the class parameter, so you should create a template with the class you want to use.
I haven’t checked that code recently, but I think most of the “display” parameters are replaced when using the template.