Steven Vachon
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: Google Analyticator] Hit counter?HELLO?
Forum: Plugins
In reply to: [Plugin: WP Minify] Gzip but not minify?I did, but that’s unimportant. 😛
Thanks for the apache code 🙂
Forum: Plugins
In reply to: [Plugin: WP Minify] Gzip but not minify?Hmm, I thought your plugin did the gzip compression and cached the file for future use. That way Apache wouldn’t need to handle it every time it gets a request for the file.
Forum: Plugins
In reply to: [Plugin: WP Minify] Gzip but not minify?Thanks for clearing up the terms.
What I’d like is to:
- enable Gzip compression
- disable concatenation – my css files are separated because of cascading and I cannot merge them without my site design breaking
- disable minification – speeds things up since I manually minify my css/js files
Forum: Plugins
In reply to: [Plugin: WP Minify] Gzip but not minify?Since I received no response, I’ll assume that’s not how gzip works with browsers.
How about separating the 3 options– combine, minify, gzip?
As I said, I have lots of cascading going on, so the files need to be separate. But I could definitely benefit from gzip and caching. I may not enable minifying cuz I prefer to use the Dojo Toolkit for that.
Forum: Plugins
In reply to: [Plugin: Platinum SEO Pack] PHP errorsFucking awesome. You act fast.
I hate to seem like a dick, but… I’m still seeing this one:
Notice: Undefined variable: in /wp-content/plugins/platinum-seo-pack/platinum_seo_pack.php on line 353
Forum: Plugins
In reply to: [Plugin: Redirection] Admin panel lists F***EDUntil this issue has been fixed in a future release, here is the fix for anyone else wondering wtf is going on:
- In the plugins list, click “Edit” for the “Redirection” plugin.
- Click on “admin.css”
- On line 234, you should see a block like this:
.item, .date, .count, .tools, .type { padding: 5px 8px; height: 100%; } - Remove (or comment out) the “height” property
Forum: Plugins
In reply to: [Plugin: Plugins List] Extra <p>’s addedIt seems to be caused by shortcode_atts()
But, I’m running WordPress 2.8.4 and apparently this bug was fixed in 2.5
Forum: Plugins
In reply to: [Plugin: WP Minify] Gzip but not minify?Multiple, separate CSS files… crammed into a *.gzip
I have many cascades going on, so I cannot merge all files into 1 *.css file.
Forum: Plugins
In reply to: [Plugin: Auto XFN-ify] Doesn’t work if link has an IDBy the way, the problem wasn’t outlined properly in my first post because I’d forgotten to place the code within WordPress’ backticks.
Basically, the problem was that if you had any attributes—like an id—the regex pattern would not match.
So, this would work:
<a href="asdf.html" id="something">link</a>…but this would not:
<a id="something" href="asdf.html">link</a>Forum: Plugins
In reply to: [Plugin: Auto XFN-ify] Doesn’t work if link has an IDReplace this:
$linkPattern = "/(<\s?a\shref\s?=[\s\"\'])($blogroll\/?)([\s\"\']{1,3})([^>]+)?(>)([^<]+)(<\/a>)/i";with this:
$linkPattern = "/(<\s*?a\b[^>]*?\bhref\s*?=[\s\"\'])($blogroll\/?)([\s\"\']{1,3})([^>]+)?(>)([^<]+)(<\/a>)/i";and it’ll work
Forum: Themes and Templates
In reply to: @package and @subpackageI’m a little confused on this too, however…
Plugin authors must not use the @package WordPress in their plugins. The package name can be anything known to be unique and can be the plugin name.
Forum: Plugins
In reply to: [Plugin: wp-Typography] Custom quote charsAh, I see. I hadn’t tested it, but was just looking at how the characters were displayed in the WordPress admin.
Thanks.
Forum: Requests and Feedback
In reply to: [Plugin: Acronyms] <abbr> instead of <acronym><abbr> and <acronym> may be read differently with screen readers. I haven’t tested, though.
Forum: Plugins
In reply to: [Plugin: wp-Typography] Custom quote charsI am seeing different quotation marks. Uglier ones. I like the ones I listed above, and they are valid Unicode.