Kailey (trepmal)
Forum Replies Created
-
Forum: Requests and Feedback
In reply to: api.wordpress.org extensionJust missed you in IRC. Try this: https://gist.github.com/2831344
Forum: Plugins
In reply to: [Mini Loops] [Plugin: Mini Loops] category linkCurrently, the only way is to hard-code the link in to the ‘after format’ field.
But it’s a good idea, I’ll see about getting this into an upcoming release.
Forum: Plugins
In reply to: [Mini Loops] [Plugin: Mini Loops] Grid-view with mini loopsThe markup is completely customizable via the 3 Format fields. It can then be styled with whatever CSS you want to add to your stylesheet.
If you’re in need of the specifics to generate a grid view, I’m afraid I can’t offer that level of free support via the forums.
Forum: Plugins
In reply to: [Mini Loops] [Plugin: Mini Loops] Default Featured Imagewebprom is correct. You can add a ‘fallback’ argument to the [image] shortcode in order to have a backup/default image appear in case ‘first’ ‘thumb’ or ‘attached’ don’t have anything.
[image from='thumb' width=100 height=100 fallback='http://colorto.me/png/100x100/darkblue/orange/']Forum: Plugins
In reply to: How to Use Mini Loops to only show posts in a particular categoryI know using IDs isn’t optimal, but it’s the simplest way to accept multiple IDs
Glad you found a solution though! The best plugin is always the one that works for you 🙂
Forum: Plugins
In reply to: How to Use Mini Loops to only show posts in a particular categoryYou’ll need to use the category ID instead of the name.
You can get the ID by examining the URL for editing a category.
On the Categories page of the admin, mouse over ‘Edit’ and look fortag_ID=#in the URL, that number will be the ID you need. Screenshot: http://cl.ly/GelTTo exclude a category, just list that ID as a negative number.
Forum: Plugins
In reply to: [Mini Loops] [Plugin: Mini Loops] Doesn't update Featured ImageImages are cached so they don’t have to be regenerated with every page load.
Add
cache=clearto the[image]shortcode to force new thumbnails.[image width=100 height=100 from=thumb cache=clear]I’d recommend removing
cache=clearwhen you’re done so that no unnecessary strain is put on your server.Forum: Plugins
In reply to: [Howdy Tweaks] [Plugin: Howdy Tweaks] Works not for other languages…Just put up a dev release that should fix this.
Dev release is also running on my demo site if you want to try it out there.
Forum: Plugins
In reply to: [Mini Loops] [Plugin: Mini Loops] Custom Taxonomy with mini loopsTry “any” as the post_type
[miniloop number_posts=20 post_type="any" order_by="date" order="DESC" tax="teams=107"]Mini Loops does not currently support multiple post types outside of “any”
Forum: Plugins
In reply to: [Mini Loops] [Plugin: Mini Loops] Feature Patch: Ignore posts over X days oldThanks a ton for your contribution, it’s been added to the upcoming release (v1.1)!
You can see it in action by downloading the Dev Release: http://wordpress.org/extend/plugins/mini-loops/download/
Forum: Plugins
In reply to: [Mini Loops] [Plugin: Mini Loops] Order by Custom FieldMeta/Custom Field order support is coming up in the next release (v1.1)!
You can get a head start by downloading the Dev Release: http://wordpress.org/extend/plugins/mini-loops/download/
If you do try it out, please let me know if you find any bugs.
Forum: Plugins
In reply to: [Mini Loops] [Plugin: Mini Loops] Limit title length functionalityThanks for your feedback.
Parameters ‘length’ ‘before’ and ‘after’ for the [title] and [url] shortcodes will be in the next release (v1.1)! .
(‘length’ is number of characters, processed prior to ‘before’ and ‘after’.)You can get a head start by downloading the Dev Release: http://wordpress.org/extend/plugins/mini-loops/download/
If you do try it out, please let me know if you find any bugs.
Fix will be coming up in the next release (v1.1)!
You can get a head start by downloading the Dev Release: http://wordpress.org/extend/plugins/mini-loops/download/
If you do try it out, please let me know if you find any bugs.
Forum: Plugins
In reply to: [Plugin: Mini Loops] How to filter by post authorPost author support is coming up in the next release (v1.1)!
You can get a head start by downloading the Dev Release: http://wordpress.org/extend/plugins/mini-loops/download/
If you do try it out, please let me know if you find any bugs.
Forum: Plugins
In reply to: [Mini Loops] [Plugin: Mini Loops] Featured Imagesadd
cache=clearto the image shortcodeFor example:
[image from=customfield cfname=image width=50 height=50 class=alignright fallback='http://dummyimage.com/50' cache=clear]This will cause thumbnails to be recreated. Be sure to remove it when done so that the thumbnails will be cached again.