40DayDetox
Forum Replies Created
Viewing 5 replies - 1 through 5 (of 5 total)
-
Forum: Fixing WordPress
In reply to: How to migrate from one server to anotherHi,
Thanks for the heads up on that plugin. It looks really good. If my hosting company can’t sort it out I may well go down that route! Thanks.
Forum: Fixing WordPress
In reply to: How to replace my text header and tagline with an image logo insteadHey,
Thanks. I was hoping for a more concrete answer before I started to dabble with the code!
I’m suprised it’s not an easy option in WordPress admin setion as I imagine an imaged logo is a very common requirement for most websites.
But thanks for the tips.. I might well have to dabble with the code at some point.
Ali
Forum: Fixing WordPress
In reply to: My posts are showing twicethanks!
Forum: Fixing WordPress
In reply to: My posts are showing twice<?php get_header(); ?> <div id="main" class="content"> <div id="left_side"> <?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?> <div class="post"> <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a> </h2> <div class="entry"> <div class="feature"> <?php the_post_thumbnail(); ?> </div> <?php the_content('Read the rest of this entry »'); ?> <?php the_content(); ?> <?php wp_link_pages('before=<p>&after=</p>&next_or_number=number&pagelink=page %'); ?> </div> <div class="clearboth"> </div> <div class="info"> <span class="time"> <?php the_time('F jS, Y') ?> </span><br/> <span class="category"> <?php the_category(', ') ?> </span> <br/> <span class="tags"> <?php the_tags() ?></span> </div> </div> <div class="post"> <?php comments_template(); ?> </div> <?php endwhile; else : ?> <div class="post"> <h2>Not Found</h2> <p>Sorry, but you are looking for something that isn't here.</p> <?php include (TEMPLATEPATH . "/searchform.php"); ?> </div> <?php endif; ?> </div> <?php get_footer(); ?>I took the:
<?php the_content('Read the rest of this entry »'); ?>out and it seems to be working!Forum: Fixing WordPress
In reply to: How to have my blog pointing to http://www.40daydetox.comThank you very much! 🙂
Viewing 5 replies - 1 through 5 (of 5 total)