ifelse
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Database error?Have you tried doing a search?
This is a hosting issue not a WP issue. You can refer your web host to the following wiki entry if they need more info but ultimately, it’ll be up to your web hosts to fix it.
Forum: Fixing WordPress
In reply to: Custom Field ProblemDon’t bother adding a custom field manually if you want to select a custom template.
Under Page Options, there should be a drop down box called Page Template. Use this to select your custom template.
BTW, nice looking site:) However, your home link appears to go to
http://www.bleikamp.com/stage/rather thanhttp://www.bleikamp.comForum: Your WordPress
In reply to: Does wordpress track new blogs created with it?Under options-> writing, there is a textfield which contains a list of services which are automatically pinged when an entry is posted.
Pingomatic should be in that list which, when alerted, will notify the other publication sites.
If you don’t want these sites to be alerted, clear the whole box.
Forum: Plugins
In reply to: browser detection pluginPlease read bullet point no2.
Forum: Themes and Templates
In reply to: not sure on how to edit a certain page’s theme..Change
<li id="comment-<?php comment_ID() ?>">to
<li id="comment-<?php comment_ID() ?>" class="<?php if ((get_comment_ID()%2)==0){echo "alt";}?>">Then add a style for the alt class in your style.css file e.g.
.alt{
background-color:#ffffff;
}Forum: Fixing WordPress
In reply to: The Forums: Please read before posting.“And you are required to read it before posting if you haven’t read it in the last 24 hours.”
TG,
No matter what you do, if people aren’t going to read it, they’re not going to read. Arbitrary obstacles aren’t going to help (think EULA agreements) but having a sticky post which we could let people reference will.“I believe Matt will have a direct link to it somewhere close to the post section.”
Having a visible link near the posting area would help. It won’t eradicate poorly chosen threads but it may reduce the occurence.Forum: Fixing WordPress
In reply to: Deleted comments in moderation by error!You could, of course, can try contacting your host to see if they have backups but in all honesty, I think it’s too late.
There a section on the Codex which explains how to backup WP so that you don’t hit this in the future. Also, July 23-30, 2005, will be WordPress Backup Week here in the forum and on the WordPress Codex where Support Volunteers will be helping users backup their WordPress site and databases.
Forum: Themes and Templates
In reply to: Insert page at top of default post listingDenis has a static front page plugin that should do what you want.
Forum: Fixing WordPress
In reply to: Show 1 category posts on main pageCan you try the following:
copy (not rename) the theme’s index.php into home.php i.e. copy
/wp-content/themes/chewinggum/index.php to /wp-content/themes/chewinggum/home.phpNow at the top of home.php, there should be a line called
get_header();
after it add the following line:
query_posts('cat=1');Forum: Fixing WordPress
In reply to: The Forums: Please read before posting.“Please use plain language and be descriptive. Talking ‘geek’ or using jargon reduces the number of people who will answer.”
Please try not to use chat, SMS or l33t speech i.e. plz, u, coz. Take a little bit of time in writing your request.In addition, please use a descriptive title. Despite the choice of words, “Please Help!!!” is neither a helpful nor a considerate title.
Forum: Fixing WordPress
In reply to: HTACCESS: how to creatWP should be able to automatically generate a .htaccess file for you if it has been given the correct permission to do so. If it can’t, then to make one, open notepad (do not use word) and copy and paste the htaccess “rules” that WP gives you.
Then, you’ll need to save this text file as .htaccess (note the filename).
You’ll then upload this to the root of your website.
Forum: Fixing WordPress
In reply to: Show PermalinkYou can use the_permalink in the_loop.
Forum: Plugins
In reply to: Wp-Useronline Plugin…You can get it here.
Forum: Installing WordPress
In reply to: One blog, two directories, but only one worksYou can only have one blog for each set of WP tables as there is a setting stored that holds the value for the blog url.
Forum: Fixing WordPress
In reply to: Sudden Internal Server ErrorThis is probably a problem with your .htaccess file. Try deleting it to see if that resolves the issue.