Steven Jones
Forum Replies Created
-
Thanks for that – didn’t see that setting.
This problem has occured on more than one installation, it has also gone wrong on another upgrade in a similar scenario to the one above.
Can anybody help?
Cheers,
SteveI’m in the same boat, any help on this would be greatly appreciated.
Steve
Forum: Themes and Templates
In reply to: Styling the Flickr widget.Anybody have any idea about this? Would be really helpful if someone in the know could take a quick look.
Forum: Fixing WordPress
In reply to: How to add read more to this themeShould be in your index.php
Forum: Fixing WordPress
In reply to: Broken links to wp-content folderCould try reuploading it. It seems all the other images in the folders work.
Forum: Fixing WordPress
In reply to: How to add read more to this themeAre you using
<?php the_excerpt(); ?>
or are you using
<?php the_content(); ?>
If you are using the excerpt it should come up automatically, if you are using the content then you can do the follow although you’ll already be showing all the post!
<a href="<?php the_permalink(); ?>"?>Read more..</a>
Forum: Themes and Templates
In reply to: stylizing the sticky post in the blog’s indexYou can just use the is_sticky() condition already in WordPress. Haven’t used it before but look into that.
Forum: Themes and Templates
In reply to: Problem adding a background to me ThemeName it page_bg.jpg and overwrite the one in your images folder. You dont need to touch the CSS.
Forum: Themes and Templates
In reply to: Change Color of Comment AuthorA link to your website and do you use firebug?
Forum: Themes and Templates
In reply to: Customized display of LATEST 3 POSTS<?php $counter = 3; $recentPosts = new WP_Query(); $recentPosts->query('showposts=3'); ?> <?php while ($recentPosts->have_posts()) : $recentPosts->the_post(); ?> <div class="box<?php echo $counter--; ?>"> <h3 class="date"><?php the_date(); ?></h6> <h3 class="title"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3> <?php the_content(); ?> </div> <?php endwhile; ?>
Forum: Themes and Templates
In reply to: Professional Website DesignStop bumping this, just look on themeforest or google. there’s loads out there. someone close this post.
Forum: Themes and Templates
In reply to: Customizing Constructor ThemeProviding some links would help. In a short and uneducated answer, you’ll have to make your own logo and overwrite it and/or change the CSS.
Forum: Themes and Templates
In reply to: settings for posts-per-page… what file to change?It’s in the WP-options table in the posts_per_page column. Change that from 6 to 7.
Use portable PHPmyAdmin to change the value.
Upgrade to 2.9 first though it might do something to let you on the settings page in the backend.
Forum: Plugins
In reply to: [Plugin: Pods]I’ve just tested it on the same host in a sub blog I have and it worked straight away.