Taylor Dewey
Forum Replies Created
-
Forum: Plugins
In reply to: [Getty Images] Embeddable images search returns 403 errorForum: Plugins
In reply to: [Getty Images] Admin SSL mixed content errorsThe update worked for this issue, Thanks.
Forum: Plugins
In reply to: [TDD Progress Bar] TDD Progress Bar issue with wp persianI had not considered the impact in a RTL environment, but I appreciate you bringing it forward!
Having the progress bar fill from left to right: do you know if that would still be the case for most languages that read right to left, or is it a design decision for your particular site?
If you wrap the output bar in a container and specify the direction is ltr, you can get the bar to behave like the English version
<div dir="ltr"> [progress bar shortcode] </div>If it’s determined that a left to right progress bar is common even in languages that read right to left, I’ll add this to the core plugin. If not, there’s a lot more work that would need to be done to support full RTL.
Forum: Reviews
In reply to: [Debug Bar Post Meta] Great stuff!You bet! It’s on Github, so if there’s something you’d like to tweak… pull requests welcome 🙂 tdd-debug-bar-post-meta
Forum: Plugins
In reply to: [TDD Progress Bar] [Plugin: TDD Progress Bar] [Request] Write on BarsSetting arbitrary text on top of the bar using the widget or shortcode isn’t supported and probably won’t ever be. Dealing with overflow text would be an issue, and it’s really just designed to show the actual progress textually (which is better for SEO and screen readers when accompanied with text that explains what the progress is toward)
That said, it’s probably not impossible to overlay the widget title with a bit of clever CSS absolute positioning or even javascript replacement…
The newest version of the plugin’s widget allows for both a widget title and a description below the bar if that helps.
Thanks for the kudos though, I’m glad it’s working out for you!
The line breaks I’ll have to check on, but a big issue that I’m seeing is that the numbers somehow ended up wrapped in
<code></code>tags. Can you check and make sure (try clicking in the HTML tab) that your shortcode isn’t in any<code>tags… Also, are you using the closing shortcode tag? i.e. `[progress id=”37″][/progress] – it’s unnecessary, but if that’s causing the issue I’ll need to find a way to mitigate it.Forum: Plugins
In reply to: [TDD Progress Bar] [Plugin: TDD Progress Bar] Upgrade to 0.5 Notice:There was an issue with the minified CSS in the plugin causing the numbers to disappear as well as the gloss effect on the bars. Turns out the minifier i was using was choking on something – probably a proprietary css3 tag or some such. Switching minifiers solved the issue and I’m releasing version 0.5.2 as we speak.
Cheers!
Forum: Plugins
In reply to: [TDD Progress Bar] [Plugin: TDD Progress Bar] Upgrade to 0.5 Notice:sent, thanks
Forum: Plugins
In reply to: [TDD Progress Bar] [Plugin: TDD Progress Bar] Upgrade to 0.5 Notice:Something’s wrong with the numbers – possibly CSS related. I’d like a chance to figure out the issue. Is this published live somewhere I can take a look at?
Forum: Plugins
In reply to: [TDD Progress Bar] [Plugin: TDD Progress Bar] Upgrade to 0.5 Notice:- I’m not sure what you mean about the big numbers not being there… Here’s a screenshot of my bars: http://grab.by/dVWm — perhaps you’ve set some options that prevent the numbers from showing up as intended?
- I’ve stopped using a big sprite to generate the bar backgrounds and instead of switched to using HTML colors. This may account for some of the dullness. I’ll work on seeing if I can’t spruce things up a little bit 🙂
In short, no, I wouldn’t take a $10 donation to revert the plugin however, I’d love to work with you to iron out any issues you’re having. If it’s really that bad, there are previous versions of the plugin available via subversion (http://plugins.svn.ww.wp.xz.cn/tdd-progress-bar/) or at github (http://github.com/tddewey/tdd-progress)
Forum: Plugins
In reply to: [TDD Progress Bar] [Plugin: TDD Progress Bar] widget htmlI’ve not used that plugin, but if it allows you to get a specific integer or count, you can set up one of my progress bars and then use the
tdd_pb_calculated_percentagefilter to adjust the value as described in the FAQ.I don’t plan on integrating native support for other plugins.
<?php add_filter( 'tdd_pb_calculated_percentage', 'change_percentage', 10, 2 ); function change_percentage($percentage, $id){ //Only apply to post (bar) ID 120, if it isn't 120, just return if ($id != 120) return $percentage; $newpercentage = $percentage_calculated_from_plugin return $newpercentage; } ?>Forum: Plugins
In reply to: [TDD Progress Bar] [Plugin: TDD Progress Bar] widget htmlpamw: They should just be ordering by post date. There’s no way to adjust that right now, but I’ll add it as something to look into for the next release. https://github.com/tddewey/tdd-progress/issues/11
Forum: Plugins
In reply to: [TDD Progress Bar] [Plugin: TDD Progress Bar] widget htmlI should be able to accommodate that in the next release. Make it behave similar to the text widget.
Forum: Plugins
In reply to: [TDD Progress Bar] [Plugin: TDD Progress Bar] ShortcodeNot yet, but I’ll consider it for the next version. Thanks!
Same. gave a 404 error.
