Fernando Briano
Forum Replies Created
-
Forum: Plugins
In reply to: [List category posts] Author as sourceSofian777 I just wrote the code to get posts for a certain author. It will be available once this new version, 0.44, is up on WordPress.org. Please once it is, update the plugin and let me know if it’s working fine for you.
Thanks!
Forum: Plugins
In reply to: [List category posts] ArrangementSofian777 thank you very much for sharing your solution 🙂
Forum: Plugins
In reply to: [List category posts] Hide pagination/page number when only 1 pageThis was implemented on the latest version. Update the plugin and check it out.
Thanks!
Forum: Plugins
In reply to: [List category posts] SHORTCODE no longer works in text widget in sidebarDid the shortcode work before? Did you try the solution I mentioned about installing a plugin for widget shortcodes?
Forum: Plugins
In reply to: [List category posts] SHORTCODE no longer works in text widget in sidebarDid you install any new plugins recently?
Anyway, I think writing a shortcode directly in the sidebar is not supposed to work. You can use a plugin which allows shortcodes to be ran in widgets or directly in your template with:
<?php echo do_shortcode("[catlist id=3]"); ?>Forum: Plugins
In reply to: [List category posts] Making an ordered list of postsI think I remember there used to be a way a long time ago, but it seems I’ve removed that feature with recent iterations. I’ll look into it and release a new version so that you can choose an ordered list to list the posts.
Thanks for reporting this!
Regards,
Forum: Plugins
In reply to: [List category posts] Now only No posts found textOops, released version 0.43.1 with fixes to the “No posts found” text. Now it displays a “no posts found” text only if you specify it and there are no posts. Otherwise, it doesn’t show anything. Please update and let me know if it’s working for you.
Thanks!
Forum: Plugins
In reply to: [List category posts] Help with layout and output optionsTry switching to single:
<?php echo do_shortcode("[catlist name=news numberposts=8 title_tag=h4 date=yes date_class='lcp_date' title_class='lcp_title' ]"); ?>
Same for dateformat:dateformat='l F dS, Y'That should work. Regarding the h4 tag, you need to use
title_tagnottagfor this to work.Forum: Plugins
In reply to: [List category posts] pagination url and paginationI don’t know how I would change the pagination url, probably would have to deal with the htaccess, but it’s important to note that each catlist shortcode has it’s own “instance” so that would be included in the URL too.
There’s currently no way that I can think of to achieve what you mention on your second question. I think that would have to be a new implementation on the plugin
Forum: Plugins
In reply to: [List category posts] Instance not working :(I think you got the “instance” parameter wrong. It’s just an identifier for when you’re using pagination. What are you trying to achieve?
Forum: Plugins
In reply to: [List category posts] Remove current post from listYes!
excludeposts – IDs of posts to exclude from the list. Use ‘this’ to exclude the current post. Ex: [catlist excludeposts=this,12,52,37]
Forum: Plugins
In reply to: [List category posts] Number of characters in titlesNot yet, but it could be something to implement on a future version. Thanks!
Forum: Plugins
In reply to: [List category posts] morelink_class and posts_ morelink_class not workingFixing this on version 0.43, coming soon…
Forum: Plugins
In reply to: [List category posts] ArrangementThe way to do that would be using a template. Check the example template on templates/default.php as a reference.
Forum: Plugins
In reply to: [List category posts] Adding static text before paramtersThe way to do that would be using a template. Check the example template on templates/default.php as a reference.