Fernando Briano
Forum Replies Created
-
Forum: Plugins
In reply to: [List category posts] [catlist currenttags] not workingExcelente 😀
Forum: Plugins
In reply to: [List category posts] Content after each postThis is possible using CSS with the default parameters. If you use something like:
[catlist id=1]
The posts you’ll get will have a markup similar to this:<ul class="lcp_catlist"> <li><a href="whatever">First post</a></li> <li><a href="whatever">Second post</a></li> <li><a href="whatever">Third post</a></li> <li><a href="whatever">Fourth post</a></li> </ul>So in your CSS you can add something like:
.lcp_catlist li{ margin-bottom: 20px; border-bottom: 20px solid black; }And that would separate the posts. If you want further customization you should use a template.
Forum: Plugins
In reply to: [List category posts] CSS to Remove bulletsForum: Plugins
In reply to: [List category posts] How to change date format?From the documentation:
dateformat – Format of the date output. The default format is the one you’ve set on your WordPress settings. Example: [catlist id=42 dateformat=”l F dS, Y”] would display the date as “Monday January 21st, 2013”. Check http://codex.wordpress.org/Formatting_Date_and_Time for more options to display date.
Forum: Plugins
In reply to: [List category posts] After upgrade Posts not showing, only parameters.Sorry for the inconvenience, it probably has something to do with the issues on version 0.63 and the renaming of the
list-category-posts.phpfile.Version 0.64 will be out later today and hopefully there will be no issues with this.
Thanks!
Forum: Plugins
In reply to: [List category posts] [catlist currenttags] not workingHi xavierve and thanks for reporting this. The use of the parameter is:
[catlist currenttags="yes"]I’m currently updating the documentation to make this more clear and fixing some of the code for getting the current tags, so this should be fixed on the next version which I’m releasing as soon as I can.
Once this new release is out please update and let me know if you had further issues.
Thank you for your patience.
Cheers,Forum: Plugins
In reply to: [List category posts] HTML customization not workingThanks for reporting this, I’m updating it in the docs.
Forum: Plugins
In reply to: [List category posts] Version # not updating to 063I noticed the same issue on my blog. For now deactivating 0.62 and activating 0.63 seems to work, but I’ll look into it and try to release a bugfix if I have some time over the weekend.
Thanks for your patience.
Forum: Plugins
In reply to: [List category posts] After 0.63 Update plugin double in listI noticed the same issue on my blog. For now deactivating 0.62 and activating 0.63 seems to work, but I’ll look into it and try to release a bugfix if I have some time over the weekend.
Thanks for your patience.
Forum: Plugins
In reply to: [List category posts] constructor method for WP_Widget is deprecatedThanks for reporting this. I’ll try to release an updated version during the weekend.
Cheers!
Forum: Plugins
In reply to: [List category posts] Everything disappereadThe plugin stopped working before updating it to 0.62?
Are you both using the “starting_with” parameter?
Yes! Thanks b1bz for your contributions and support!!
Forum: Plugins
In reply to: [List categories] Remove Categories from ListYes, you can remove the title with the ‘title_li’ parameter. Taken from the wp_list_categories documentation:
Display or Hide the List Heading
The title_li parameter sets or hides a title or heading for the category list generated by wp_list_categories. It defaults to ‘(__(‘Categories’)’, i.e. it displays the word “Categories” as the list’s heading. If the parameter is set to a null or empty value, no heading is displayed. The following example code excludes categories with IDs 4 and 7 and hides the list heading:
`
<ul>
<?php wp_list_categories(‘exclude=4,7&title_li=’); ?>
</ul>
`Forum: Plugins
In reply to: [List category posts] Can you eliminate title in shortcode?The parameter was added a while ago, check the Changelog on new updates to learn about new parameters:
no_post_titles – If set to yes, no post titles will be shown. This may make sense together with content=yes.
Forum: Plugins
In reply to: [List category posts] Error of name on some translation filesThanks, I’ve fixed this in the latest version!