desmark
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Quicktags show in Firefow but not in IETypo, sorry, I am an Idiot 😛
For future wally reference, I had left the ending */ of a comment in the .js but this only affected IE.
Forum: Fixing WordPress
In reply to: Quicktags show in Firefow but not in IEUpdate..
Reverting to the original quicktags.js file seems to fix the display issue.
But I don’t understand why my edited file works in Firefox but not in IE.
Any ideas?
Forum: Plugins
In reply to: Plugin: Get-a-Post (supports Pages)Cool plugin!
Forum: Fixing WordPress
In reply to: thumbnail sizeFast fission’s suggestion worked for me too.
If you are just looking to hard code a max height/width for your thumbs, you can edit the portion that is meant to be commented out.
if ( $imagedata['width'] * $imagedata['height'] < 3 * 1024 * 1024 ) {
if ( $imagedata['width'] > 128 && $imagedata['width'] >= $imagedata['height'] * 4 / 3 )
$thumb = wp_create_thumbnail($file, 128);
elseif ( $imagedata['height'] > 96 )
$thumb = wp_create_thumbnail($file, 96);
Replacing the 128 (max width) or 96 (max height) with your personal preferences.
Saves the extra fiddling if you want standard sizes across your site. 🙂
Great support forums BTW