Fernando Briano
Forum Replies Created
-
Forum: Plugins
In reply to: [List category posts] Order by name is reverse alphabetical?Please, check out the documentation, you can use the
orderparameter:order – How to sort orderby. Valid values are:
ASC – Ascending (lowest to highest).
DESC – Descending (highest to lowest). Ex:[catlist name=mycategory orderby=title order=asc]Forum: Plugins
In reply to: [List category posts] Unwanted Limiting of post titles shownPlease read the documentation:
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]
If you want all of the posts to display, you should use:
[catlist name=articles numberposts=-1]Forum: Plugins
In reply to: [List category posts] Display Post ThumbnailsThe site is using a plugin which overrides the theme’s CSS, that’s why this was not working. I’m resolving this issue internally with the user so I’m marking this as resolver.
Forum: Plugins
In reply to: [List category posts] Display Post Thumbnailsjohngusty I’ll write you an e-mail.
Forum: Plugins
In reply to: [List category posts] Display Post Thumbnailsjohngusty: you’re doing the featured image the right way. Looks like some of the CSS changed, use this and see if it works for you:
.attachment-100x100{ max-height: 100px !important; min-width: 100px !important; }firms: I’ll answer on the other topic you commented on.
Forum: Plugins
In reply to: [List category posts] Sorting by contentI haven’t been able to reproduce this issue yet, but I’ll get back to you as soon as I find something.
Forum: Plugins
In reply to: [List category posts] How to show full excerpt?I will, it’s on the roadmap for version 1.0 which I want to release as soon as possible 🙂
Forum: Plugins
In reply to: [List category posts] Display Post ThumbnailsYes, this will alter the code site wide. But it’s only going to apply these changes to elements that use the class “attachment-100×100”. So it makes sense, the name of the class is saying these elements should have a width and height of 100×100.
Apply the change, check the site and worst case scenario you can revert it and come back to the WordPress forums for help if it’s not working as you expected 🙂
Forum: Plugins
In reply to: [List category posts] Display Post ThumbnailsI think you can paste it wherever you want in that file. The style.css file is the style sheet for the whole theme, so all of the site is using it.
But if you want to be tidy, put it after “.main-content-area img.wp-post-image” which is on line 589. It should look something like this:
.main-content-area img.wp-post-image { min-width: 100%; height: auto; } .attachment-100x100{ height: 100px !important; min-width: 100px !important; } .main-content-area img.alignleft { float: left; margin-right: 20px; }Forum: Plugins
In reply to: [List category posts] won't use parametersI’m at a loss here. Other users have reported the post limit not to work, but I don’t know what else to look for.
You know for sure some of the posts listed there do have excerpts, right?
And you know the posts on categories 6 and 7 are more than 5 in total?
Sorry for the obvious questions, but I’m unable to reproduce the issue on my end and really can’t figure out what’s wrong :S
Forum: Plugins
In reply to: [List category posts] How to show full excerpt?From the docs:
excerpt_size – Set the number of words to display from the excerpt. Default is 55. Eg:
excerpt_size=30At the moment the plugin ignores the MORE tag, but it’s on the To-do list to add support for it.
Forum: Plugins
In reply to: [List category posts] Thumbnail image has caption, how to show it?I’ll check this out, there probably is a way but it’s not implemented right now, will update this post with more info later.
Forum: Plugins
In reply to: [List category posts] Display Post ThumbnailsYep, it’s some CSS making it look like that. You can inspect the thumbnails with your browser’s Developer Tools. I’m using Firefox and just right click on an element and click on “Inspect Element”.
You have this in your CSS:
.main-content-area img.wp-post-image { min-width: 100%; height: auto; }I wouldn’t change that because you’re probably using it somewhere else. You can add this to the stylesheet and the images will go 100×100:
.attachment-100x100{ height: 100px !important; min-width: 100px !important; }You can do this from: http://www.thmtest.com/wp-admin/theme-editor.php, edit the style.css file and add that code. Let me know if it works!
Forum: Plugins
In reply to: [List category posts] Display Post ThumbnailsWhen I go into the URL you wrote there, I get redirected to:
http://www.thmtest.com/membership-options/?_optimizemember_seeking%5Btype%5D=page&_optimizemember_seeking%5Bpage%5D=534&_optimizemember_seeking%5B_uri%5D=L3JlY2lwZS1pbmRleC0yLw%3D%3D&_optimizemember_req%5Btype%5D=level&_optimizemember_req%5Blevel%5D=1&_optimizemember_res%5Btype%5D=page&optimizemember_seeking=page-534&optimizemember_level_req=1This is what I see:
http://i.imgur.com/mQlWHH0.jpg
I can’t find where you’re using the plugin there.Forum: Plugins
In reply to: [List category posts] Display Post ThumbnailsCan you post the link to the page?
Testing this same code (with other id):
[catlist thumbnail=yes thumbnail_size=100,100]
I get this:
<img src="http://localhost/wordpress/wp-content/uploads/2013/10/image-150x150.png" class="attachment-100x100 wp-post-image" alt="image" height="100" width="100">Is it possible that there’s a CSS class overwriting the dimensions? Do you get the height and width properties correctly on the displayed thumbnail?