Fernando Briano
Forum Replies Created
-
Forum: Plugins
In reply to: [List category posts] The 'class' identifier in LCPI haven’t been able to reproduce this issue. Using this:
[catlist id=1 class='centered']
I get:<ul class="centered"> <li>...What version of the plugin are you using?
Forum: Plugins
In reply to: [List category posts] Hack post title adding elementsI’ve been running low on time for the plugin these days, but I’ll get some new coding done this week.
Forum: Plugins
In reply to: [List category posts] can't get 'full' size images to showI’ll check this out and let you know what I find. I’ve been running low on time for the plugin these days, but I’ll get some new coding done this week.
Forum: Plugins
In reply to: [List category posts] Problem with Order by TitleThat’s pretty strange. The plugin is using a different method to get the posts on that version, so it’s using a WP_Query. You probably found a bug. I’ll check it out and let you know what I find here.
Forum: Plugins
In reply to: [List category posts] Date helpThat’s awesome matatomata, if you have any suggestions on how to improve the documentation to make it better for new users, please don’t hesitate to let me know so I can make it better.
Regards,
Forum: Plugins
In reply to: [List category posts] Paginationtaniav,
Thank you very much for your feedback. This is exactly the kind of feedback I’ve been looking for 🙂I’ll fix the CSS and check out how to make it comfortable and nice with lots of pages.
Thank you!
Forum: Plugins
In reply to: [List category posts] PaginationTo anyone interested, this has been merged into the main development branch, so it will be available on the next release of List Category Posts 🙂
Please if you would be so kind to test it here’s the link:
http://github.com/picandocodigo/List-Category-Posts/releases/tag/v0.38-alphaForum: Plugins
In reply to: [List category posts] What about date customfield order?Haven’t implemented it yet.
It’s complicated since you’re using strings to define custom fields. So let’s say a given date for this custom field is “29/11/2013, 22:00”. If I use the PHP
strtotimefunction on this string, it returns false because it’s not recognized as a correct date format.I think an alternative way of achieving this could be using a plugin for getting a date type on a custom field and ordering by that custom field. These links may help:
http://wordpress.org/support/topic/plugin-advanced-custom-fields-date-time-picker?replies=8Forum: Plugins
In reply to: [List category posts] Paginationemisaidi,
Thanks for trying it and your feedback. I’ll add a CSS class for the pagination so that ul and li can be customized.Thanks!
Forum: Plugins
In reply to: [List category posts] Hack post title adding elementsHow do you suggest this would work on the shortcode? Would it be one string for every post or one per each post? If so, I guess the best would be to make it a custom field. I’ll work a way out of displaying just custom field values and not their names for a future version.
Forum: Plugins
In reply to: [List category posts] Widget Read moreI just wrote the implementation to support WordPress’ “Read More”. So when using content=yes you will get the link to “Continue Reading” when using the “more” tag in your post.
Forum: Plugins
In reply to: [List category posts] catlist last post out of loopLooks like there might be an extra ul close tag in one of your posts, so the li for the last post is out of the plugin’s loop. Check your source code to find where this can be happening.
Regards,
Forum: Plugins
In reply to: [List category posts] Unwanted Limiting of post titles shownYou’re welcome! If you have any suggestions on how to make the documentation more readable, you’re more than welcome to send them.
Cheers,
Forum: Plugins
In reply to: [List category posts] numberposts isn't workingamyboyack I can’t reproduce this issue. Have you tried with the default template? By default it would display 5, but if it’s displaying 10, then it is getting more than the default so the “-1” parameter is being read by the plugin.
It could be something with the theme as you said, please, check that. The theme might be adding a filter to the
get_postsfunction which this plugin uses to get the posts.rhiannonmorris: I already answered you here:
http://wordpress.org/support/topic/unwanted-limiting-of-post-titles-shown?replies=2Forum: Plugins
In reply to: [List category posts] Display Title On Top of ThumbnailYes, you just need to add a thumbnail class and do a clear:both for the class.
So the shortcode would look something like this:
[catlist id=1 thumbnail=yes thumbnail_class=my_thumbnail]Use whatever you want instead of “my_thumbnail”. And thenin your CSS do:
.my_thumbnail{ clear: left; }That should work.