Chris_K
Forum Replies Created
-
Forum: Installing WordPress
In reply to: Fatal Error Upgrading to 2.9.2@rebakahblam — your .htaccess file is the same directory as your WordPress install.
Forum: Fixing WordPress
In reply to: RSS Feeds from blogWithout a link to your blog or feed nobody can do much more than blindly guess. Got a link?
Forum: Installing WordPress
In reply to: wordpress url problemHave a look at Moving_WordPress for some options.
Forum: Fixing WordPress
In reply to: Response body too largeIt might help the volunteers if you offered a link to your WordPress installation.
Forum: Installing WordPress
In reply to: I’m so confused?I’m a little confused, but is this what you’re looking for?
http://www.angrypoliticalrants.com/wp-login.php
Please keep in mind that this site, wordpress.org, has nothing whatsoever to do with your own hosted WordPress blog.
Forum: Fixing WordPress
In reply to: How to hide a post from the blog?Or put in a certain category and then exclude that category from the main page?
Forum: Installing WordPress
In reply to: 2 Blogs on one databaseSure, two blogs can use the same database. Just ensure each blog has a different “table_prefix” value set in their respective
wp-config.phpfiles.More at: http://codex.wordpress.org/Installing_Multiple_Blogs#Single_Database
Forum: Fixing WordPress
In reply to: lost my word press web siteYou’ll need access to the old server (or perhaps you have backups of your site and database?). Then see Moving_WordPress.
Forum: Fixing WordPress
In reply to: Active theme has no loginWhen in doubt, just add “/wp-admin” to the end of your blog’s URL.
Forum: Themes and Templates
In reply to: including a picture in page/postWhere’s the image?
When writing your post, there’s a button above to insert an image. Click that and look closely at the top of the resulting dialog. The default is the uploader tab, but there’s also a tab to allow you to add an image from URL. Go to that tab, enter the URL of the image’s location and you’re good to go.
Forum: Fixing WordPress
In reply to: permalink structureLook at Moving_WordPress or Giving_WordPress_Its_Own_Directory to see some options.
Forum: Everything else WordPress
In reply to: Forum ModeratorHave a look at the archives and see if it interests you. 🙂 It typically isn’t a high volume list so safe to subscribe to.
I get the impression you’re looking for a checklist of sorts and I have to apologize, we’re just not that formal. It is casual, ad-hoc and we just try to help as we can.
Forum: Everything else WordPress
In reply to: Forum ModeratorAlas, nobody knows who adds a “modlook” tag — and no, adding a “modlook added by me” to the thread won’t curry favor 😉
It definitely is a wonderful contribution towards the health of the forums though.
Forum: Themes and Templates
In reply to: Can I include plugins in a paid theme?… and very unlikely.
We don’t have a spank button.
Forum: Fixing WordPress
In reply to: Current Post in full then ExcerptsThat’s not too tough with a small modification to The_Loop but the trick is making sure that you don’t do it to subsequent pages (like when folks navigate to older posts).
In your theme’s index.php find
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
and add this right before that line:
<?php $postcount = 0; ?>
and add this right after that line:
<?php $postcount++;Scroll down a bit to where your theme calls
the_content()and replace that with something like this (keep in mind you might want to save your theme’s originalthe_content()line and replace it below):<?php if ($postcount == 1 && !is_paged()) : ?> <?php the_content(__('Read more'));?><div style="clear:both;"></div> <?php else : ?> <?php the_excerpt(); ?> <?php endif; ?>And there you go.