Khairil Zhafri
Forum Replies Created
-
Avatar? I dont see any like that “randomly selects an avatar”.
Forum: Fixing WordPress
In reply to: Uninstall WP 2.3.3 – HOW?Clear the database.
Forum: Themes and Templates
In reply to: Hide Blog’s Descriptionadd this to your CSS
.description { display: none; }
Is it possible for me to make my hosted WordPress blog tags searchable at WordPress.com?
No, unless you blog on WordPress.com
How can I best ‘expose’ (what’s a better term) my blog on the web? Are there any specific things I can do to make my blog/tags part of search engine databases?
You can use Google Webmaster tools and SEO plugins. You also need some patience.
Forum: Installing WordPress
In reply to: Multiple domains on one host / htaccess / multiple installationsCan you do domain pointer/parking?
If so,
1. Install WordPress as usual at FirstDomain.com2. Point/Park SecondDomain.com to FirstDomain.com
3. Add the following code in the wp-config.php after the table_prefix line:
$hostname = $_SERVER['SERVER_NAME']; $hostname = str_replace('www.', '', $hostname); if ($hostname == 'SecondDomain.com') { define('WP_SITEURL', 'http://SecondDomain.com'); define('WP_HOME', 'http://SecondDomain.com'); }4. Wait a couple of minutes for the tea to brew.
5. Voila!
You can use custom fields.
Forum: Plugins
In reply to: Help with an API Key?Try to read the page that prompts for WordPress.com API key again, this time very thoroughly. Then, you’ll know where actually to find it. 🙂
Good luck.
Forum: Plugins
In reply to: getting and storing user contact infohttp://dev.wp-plugins.org/wiki/Userextra
Not sure if it’s still compatible. Should be.
Forum: Installing WordPress
In reply to: How can I exclude a category from navigation?Which navigation exactly?
Forum: Fixing WordPress
In reply to: Add image on top of first post onlyWhoops. Actually just replace everything I suggested into:
<?php if(is_home()) { ?> <img src="whateverurltotheimage" alt="alternatetexttotheimage"> <?php } ?> <?php while (have_posts()) : the_post(); ?>There were a little misunderstanding and little error in the earlier code.
Forum: Fixing WordPress
In reply to: Add image on top of first post onlySorry about the lah. Didn’t realize I typed that.
Replace
<?php while (have_posts()) : the_post(); ?>with
<?php while (have_posts()) : ?; ?> <?php if(is_home()) { ?> <img src="whateverurltotheimage" alt="alternatetexttotheimage"> <?php } ?> <?php the_post(); ?>Forum: Plugins
In reply to: Qotd wich lets visitors add quotes?Oh yeah. That’s a good idea. Random quotes. I can use that to create some sort of a quiz page who said bla, bla?
Forum: Fixing WordPress
In reply to: Add image on top of first post onlyYou might want to use conditional tag is_home() so that it only appears in the home page.
Forum: Fixing WordPress
In reply to: Add image on top of first post onlyPut the image lah.
Forum: Fixing WordPress
In reply to: Add image on top of first post onlyPut it before <?php while (have_posts()) : the_post(); ?>