ifelse
Forum Replies Created
-
Forum: Your WordPress
In reply to: Victoria E :: Public RamblingsThe loading time is virtually entirely due to the following two images which are about 400k(!) each.
http://victoria-e.com/wordpress/otherimages/09122005_02.jpg
http://victoria-e.com/wordpress/otherimages/09122005_01.jpgI suggest resizing the images to a smaller size (and if necessary, making them clickable images which link to the actual full size image). Currently, you’re relying on the browser to resize them which means all that extra bulk is just waste.
Forum: Fixing WordPress
In reply to: Limiting post of the home page?Here’s a thread in which a similar question was posted.
Forum: Themes and Templates
In reply to: New Stanch Theme for WP???Try not to double-post especially when the last topic (a slightly different title) was posted just 30 minutes prior.
Forum: Fixing WordPress
In reply to: Quick Custom Fields Question“You’d better watch out, because if I ever find you I might not be able to control myself from giving you a series of embarrassing but curiously refreshing hugs.”
Erm, thanks?:)Forum: Fixing WordPress
In reply to: Quick Custom Fields QuestionJust use
<?php echo get_post_meta($post->ID, 'vid_a', true); ?>get_post_meta just retrieves the value. To output it, you’ll need to echo the value returned.
BTW, as an aside, “cannot-modify-header” errors are usually due to extraneous whitespace.
“I would call that a redeeming factor 🙂 (If he needed one.)”
I think the reason it has been brought up is that he’s asked us to vote for him because it would “bring some more sunshine to WordPress!” and I’m guessing that’s why a lot of people did.
Unfortunately, it’ll bring little exposure to WP because there WP wasn’t mentioned on the Macromedia site.
Note that I’m not saying that WP should have been mentioned or that his posting an announcement here is wrong; quite the opposite. However, the request to “vote for him as a vote for WP” was, perhaps, unnecessary.
Forum: Installing WordPress
In reply to: CHMOD 777“Besides I am just curious. Do you know the purpose of setting them?”
Here’s an introduction to CHMOD that I made in response to another thread.
Forum: Installing WordPress
In reply to: IntimidatingBut I still do not understand why I get that page of XML when I click RSS when the only thing I really need for my RSS-reader is the url. Or does the page have some use in itself?
The xml *is* the information. That’s what the RSS-reader is reading and what it understands. Your problem is that your browser doesn’t understand what the xml represents and just dumps it as so.
Forum: Installing WordPress
In reply to: Sub-domain hosting with separate Admin areasDepending on how much control over your hosting you have, Skippy’s VHost plugin may be suitable.
Forum: Fixing WordPress
In reply to: PopularityOpen up the popularity-contest.php file and change
$ak_show_popularity_with_post = 1;
to$ak_show_popularity_with_post = 0;BTW, this is documented in the readme file included with the plugin:)
Forum: Fixing WordPress
In reply to: Blog urls with ~ ?I’d be tempted to hardcode the link to the css file. Open up wp-content/themes/default/header.php and change
<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" />
to
<link rel="stylesheet" href="~tliebig/testblog/wp-content/themes/default/style.css" type="text/css" media="screen" />Forum: Fixing WordPress
In reply to: Can not recieve trackbacks or trackback pings – WP 1.5.2BTW, if you’re worried about comment/TB spam, the best plugin is IOError’s Bad Behaviour plugin
Forum: Fixing WordPress
In reply to: Can not recieve trackbacks or trackback pings – WP 1.5.2The correct utility to use is Owen’s Manual Trackback test to see if you can receive TBs.
FWIW, I’m on DH and am using WP 1.52 and can receive TB successfully.
Forum: Fixing WordPress
In reply to: Entries Per Page (Main vs. Archived)“You can do tha only with plugins:”
If you’re comfortable with editing themes, you can do this quite easily using query_posts. You can then edit the reading options without affecting the front page.
Forum: Fixing WordPress
In reply to: 1.5.2 Can’t Get Trackback to WorkObvious question; Has the other site enabled trackback on their post?