Kailey (trepmal)
Forum Replies Created
-
Forum: Plugins
In reply to: [Mini Loops] [Plugin: Mini Loops] Suggested FeatureThere’s also a checkbox for shuffling the order. That is, if you’re showing the 10 most recent posts, display those in a shuffled/randomized order. (Rather than getting a random selection from all posts.)
Forum: Plugins
In reply to: [Mini Loops] [Plugin: Mini Loops] Suggested FeatureDoes the “Random” option under “Order By” not work for you?
I’m not sure how many people have the issue where zip file isn’t extracted. I haven’t experienced it myself…
Nevertheless, I’ve just added a note to the plugin’s main description.
I’ve also just added the German language files – thanks for that!
Forum: Plugins
In reply to: [Mini Loops] [Plugin: Mini Loops] Localized timedatehas been switched to WordPress’sdate_i18nwhich should support localized date/time stringsversion 1.6.5.1 should have the updated POT file. Sorry for falling behind on that…
You can send the mo/po files to me at trepmal (at) gmail (dot) com
Surprise!
0.2 was just released with both ‘any’ and ‘background’ support
I’ll certainly add it to my to-do list for the next update – but at a whopping 76 downloads, I’m not sure when exactly that’ll be 🙂 Maybe tonight… maybe next month…
(I tried to get the background option in the initial release, but the robohash server wasn’t cooperating at the time)
Forum: Plugins
In reply to: [Mini Loops] [Plugin: Mini Loops] Removing bullet from first postShould be removable by adding this to your CSS
.miniloops ul { list-style-type: none; }I do my best!
Glad to help.
On line 418/19 of adv-most-recent.php there should be a line like this:
$excerpt = $separator . ($spot == 'spot3' ? '<span class="date">'.$time.'</span> ' : '') . $excerpt . $afterexcerpt_html;Replace that with this:
if ( ! empty( $post->post_excerpt ) ) { $excerpt = $separator . ($spot == 'spot3' ? '<span class="date">'.$time.'</span> ' : '') . $post->post_excerpt; } else { $excerpt = $separator . ($spot == 'spot3' ? '<span class="date">'.$time.'</span> ' : '') . $excerpt . $afterexcerpt_html; }The new code does this: If the custom post excerpt has been set, use that and ignore whatever has been set for the “after excerpt” text (change that if you wish, but the typical ‘…’ wouldn’t make sense here). Otherwise, if the custom excerpt hasn’t been set, proceed as usual.
Forum: Plugins
In reply to: [Post Editor Buttons Fork] Line breakSome of the default buttons for block level tags (
<blockquote>,<ul>) come with line breaks, but I’m not sure how these would get added to any of the custom buttons.http://core.trac.wordpress.org/browser/trunk/wp-includes/js/quicktags.dev.js
If toggling between HTML and Visual mode, the line breaks are probably due to TinyMCE/WordPress code formatting.
Forum: Plugins
In reply to: [Post Editor Buttons Fork] Line breakSorry for the late response – I’ve been a bit under the weather.
I was unable to replicate the issue on any of my WordPress test installs. There could be interference from another plugin, or maybe some browser settings.
If you figure out or learn more about the issue, feel free to post it here in case other users are experiencing the same problem.
Forum: Plugins
In reply to: [Post Editor Buttons] Post editor button doesn't workThis plugin doesn’t work in 3.1+
I’ve released a fork that does work: http://wordpress.org/extend/plugins/post-editor-buttons-fork/
AddQuicktag is also a popular alternative.
Not with this plugin at this time. It’s a feature I’m hoping to add eventually, but since all of my plugins are developed and maintained in my spare time, I don’t have any idea when I’ll get to it…
There may be other plugins that do this, but I don’t know the names of any.
Forum: Plugins
In reply to: [Post Editor Buttons Fork] Doesn't Show AnythingYou should be able to include attributes so long as they’re in single quotes. I’ll make a note of that in the plugin.
For example,
<h2 style='color:#ff0;'>and<h3 class='clear'>both work for me. Note that after you save, the single quote marks will be escaped (<h3 class=\'clear\'>) but this won’t affect functionality.I’ll try to get that cleaned up on the next version too.
Adding buttons to the Visual editor would require some significant changes to this plugin, so it’s not something I’ll focus on immediately, but I will try to make it more clear that this plugin is for the HTML view only.