manntis
Forum Replies Created
-
Forum: Plugins
In reply to: Easy Contact Forms – looks great, but doesn't work…and yet the label field of your forms, in the left column, uses that 100px and can’t be overridden. Go figure.
Saying what CSS is does nothing to explain why your plugin ignores css input.
Forum: Plugins
In reply to: Easy Contact Forms – looks great, but doesn't workOkay, so all CSS is ‘custom’. Your own dashboard fields allow for style input, yet here you have a frustrated user telling you the plugin is ignoring that input. Your response? To be a jerk about it.
As for your “There are a lot of simple ways of changing the label length. Nothing is hard-coded” claim: it’s BS. In your own style sheet code is:
#divEasyContactForms label{width: 100px;display:block;clear:right;color:#000000;margin:8px 0 3px 0;white-space:nowrap;font-size:1.1em !important;}^that’s hard coding a 100px width. Further, because creating a new style folder and retargeting the css goes ignored (as mentioned in my earlier post), there’s no way to NOT have it 100px unless I change your core files and risk it being overwritten at the next update.
Finally, your sarcastic and smarmy response makes me relieved that you’ve heretofore ignored my more polite requests for support. As it is, you’ve just confirmed what I said.
Forum: Plugins
In reply to: Easy Contact Forms – looks great, but doesn't workI’m having issues with this plugin too.
– The text for the labels insists on coming up white, no matter what I add or change in the CSS
– it won’t recognize any custom CSS either made as a style folder for the plugin or input through the dashboard
– there’s no way to configure the left column as anything except 100px, which is incredibly stupid as many labels easily exceed that length
– emails to support go unansweredin short I find this to be one of those look-cool-initially-but-fights-you-at-every-turn plugins, with the added bonus of crappy support.
Forum: Fixing WordPress
In reply to: thumbnails won't showSorry trepmal, I didn’t see your reply until now.
I very much appreciate all your help. I still don’t know why virtually every theme I try doesn’t show thumbnails unless I go in and alter the code. Obviously this isn’t the case for everyone – themes wouldn’t be released with thumbnails broken across the board.
Forum: Fixing WordPress
In reply to: thumbnails won't show. disregard this post
Forum: Fixing WordPress
In reply to: thumbnails won't shownot sure how to post code ‘in context’ when it’s php files calling each other all over the place
Forum: Fixing WordPress
In reply to: thumbnails won't showso I gave up on the shorter, elegant code that doesn’t work and used the longer, ham-fisted but functional method from my previous themes
function slide_image($postid=0, $size='thumbnail') {
if ($postid<1) $postid = get_the_ID();
if ($images = get_children(array(
'post_parent' => $postid,
'post_type' => 'attachment',
'numberposts' => 1,
'post_mime_type' => 'image',
'order_by' => 'menu_order',
'order' => 'ASC')))foreach($images as $image) {
$attachment=wp_get_attachment_image_src($image->ID, $size);
?><img src="<?php echo $attachment[0]; ?>" class="slidimg" /><?php} else {
?>
<img class="slidimg" src="<?php bloginfo('template_directory'); ?>/images/dummy.jpg" />
<?php
};
}now my question is how do I tell it which image to use? When you upload an image with a theme that has a custom size for a window or accordion on the index page, it’ll upload a thumbnail, a small, a medium, a large, a full, and a custom version of the image to the Uploads folder.
example: Uploading test.jpg results in multiple files
test.jpg
test-150×150.jpg
test-200×150.jpg
test-300×225.jpg
test-621×250.jpgRight now, as you can see, I’m calling the thumbnail version – because I don’t know what the -621×250 version would be called.
Forum: Fixing WordPress
In reply to: thumbnails won't shownope. Even forcing an ID=1 failed.
If it was something in the theme code, it wouldn’t be happening with every theme except ones I build myself so it must be something in how my wordpress install is configured.
But this is a clean-sheet configuration, and the only thing I’ve customized is to set appearance to this theme, and it happens with me 4 other wordpress installs to. So it must be something in the code.
This makes no sense *headdesk*
Forum: Fixing WordPress
In reply to: thumbnails won't showdidn’t work.
No matter what theme I use, unless I put in a custom script they can never sem to find my damned thumbnails. The image will show in the article just fine… but no thumbnail
I just tried again with a fresh install of wordpress on a brand new domain. Same problem.
Does ‘has_post_thumbnail()’ fail if the folder is named something other than ‘wordpress’?
Forum: Fixing WordPress
In reply to: Redirect Category To PageRather than echoing a blank, and having your actual command on an ‘else’ condition, wouldn’t it be simpler to make your ‘if’ condition a !is?
Forum: Fixing WordPress
In reply to: my facebook Group on my wordpress site.^ that’s the one.
If you make a custom CSS, make sure to append a version number every time you make a change, otherwise Facebook will use a cached version forever. It’s bloody annoying.
Forum: Fixing WordPress
In reply to: Can’t click on links or anything in IE6I doubt it has anything to do with WP3 – what makes you think it does? It’s far more likely it’s a theme issue. As songdogtech pointed out there are well-known IE problems with CSS
Forum: Fixing WordPress
In reply to: my facebook Group on my wordpress site.Go to Facebook and copy the code for setting up the facebook api call. Install a plugin like Raw HTML so you can place code on a page without wordpress deleting chunks of it, then put the facebook code into that page.
I did something similar to place the code in my sidebar. See the results at http://www.TheHungryI.org
Forum: Alpha/Beta/RC
In reply to: Upgrade availableI keep getting the ‘1’ flag next to updates, nagging me that there’s an update available. However, if I click it I get:
You have the latest version of WordPress. You do not need to update. However, if you want to re-install version 3.0, you can do so automatically or download the package and re-install manually
If I have the latest version, why the hell does WP keep the update nag flag up? It’s annoying.
Forum: Fixing WordPress
In reply to: Categories, comments, & tags vanished overnightProblem was a log file making the host disk appear full somehow. Fixed at server level.