ebenjen
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: 2.5 Upgrade Successful followed by Server ErrorNever mind.
It’s working again. No idea what happened but after five minutes of consistent server errors, everything is working normally.
Phew.
Forum: Fixing WordPress
In reply to: Custom Header Based on Page_ID?No reply so I tried it and discovered that it won’t work. I then tried this:
<?php } elseif (is_page('page_id=1')) { ?> <img src="<?php bloginfo('template_url'); ?>/images/header_1.jpg" width="770" height="140" alt="<?php bloginfo('name'); ?> header image 1" title="<?php bloginfo('name'); ?> header image 3" /> <?php } elseif (is_page('page_id=2')) { ?> <img src="<?php bloginfo('template_url'); ?>/images/header_2.jpg" width="770" height="140" alt="<?php bloginfo('name'); ?> header image 2" title="<?php bloginfo('name'); ?> header image 3" /> <?php } elseif (is_page('page_id=3')) { ?> <img src="<?php bloginfo('template_url'); ?>/images/header_3.jpg" width="770" height="140" alt="<?php bloginfo('name'); ?> header image 3" title="<?php bloginfo('name'); ?> header image 3" /> <?php } elseif (is_page('page_id=4')) { ?> <img src="<?php bloginfo('template_url'); ?>/images/header_4.jpg" width="770" height="140" alt="<?php bloginfo('name'); ?> header image 4" title="<?php bloginfo('name'); ?> header image 3" /> <?php } elseif (is_page('page_id=5')) { ?> <img src="<?php bloginfo('template_url'); ?>/images/header_5.jpg" width="770" height="140" alt="<?php bloginfo('name'); ?> header image 5" title="<?php bloginfo('name'); ?> header image 3" />
and that doesn’t work either.
Is there any way to have a custom header image depending on page_id?
Anybody?
Forum: Plugins
In reply to: Zenpress Plugin Path ErrorPS – latest versions of WP and ZP
Not!
Stupid human error — I was not using the latest WP but am now and the plugin works.
Sorry about that.
Forum: Fixing WordPress
In reply to: Clickable ExcerptThat helped me do part of what I want (I’m not the original poster) but I can’t figure out the next part. I tweaked it a bit so that the whole excerpt isn’t the link – just the words “read more…” but when I click on the link the post page only shows the excerpt.
Is it possible to have only the excerpt show up on the home page but the excerpt and post on the post page?
(I hope that makes sense – it seems to be a logical and common way to use an excerpt.)
Here’s my code:
<?php
if(!$post->post_excerpt) {
the_content();
} else {
?><?php the_excerpt(); ?>
” rel=”bookmark” title=”Permanent Link to <?php the_title(); ?>”>there is more…
<?php
}
?>The site is https://foolcrow.com
Forum: Fixing WordPress
In reply to: Another user experiencing slownessIt figures…. A few of you were kind enough to visit and post and no-one reported any delays. Everything is loading at normal speeds today.
So, I’m going to assume my problem was server-related. I’ll post again if it reccurs.
Thanks.
Forum: Installing WordPress
In reply to: New Installation – No CommentsThanks. I searched but missed that thread. After a quick look, it’s not promising. Tried Keng’s fix but that didn’t work. I’ll read the whole thread more closely later.