aban
Forum Replies Created
-
Forum: Plugins
In reply to: [Tools for Twitter] [Plugin: Twitter Tools] can't seem to get it to work@wphelpcenter: I did but nothing’s happened. Well, I don’t have a problem while I had OAuth (I followed the instructions and doing fine), but the tweets still won’t show up on my blog…
Forum: Plugins
In reply to: [Tools for Twitter] [Plugin: Twitter Tools] can't seem to get it to worksame here… when I upgraded to version 2.4, latest tweets didn’t show up (remains the last tweet before upgrade)…
You should use FTP client, or cpanel (or any interface at your hosting provider) to remote to your server, so you’ll be able to edit the wp-config.php file
Have you tried this one…
Edit your wp-config.php file then “comment out” the line that defines WP Super Cache.
If you don’t know what that means, about 10 lines into the file’s code, you should find something that looks like this:
define('WP_CACHE', true); //added by yourname on somedatechange it to this (add two hashmarks to the beginning of the line):
//define('WP_CACHE', true); //added by yourname on somedateand then save the file. That should restore your dashboard.
Forum: Themes and Templates
In reply to: Using Categories to build pagesYou can use query post tag
Read it here:
http://codex.wordpress.org/Template_Tags/query_postsForum: Installing WordPress
In reply to: help on my siteThere are a lot tag that don’t have the close tag. Please check and validate your theme
Forum: Fixing WordPress
In reply to: Site structureYou want to make your blog as a full website don’t you? Well, you need to do some “hardcore coding” to make it 🙂
Or
If you want make it simple. Just create index.php file on the root level and put rss aggregator to call your blog post in the wordpress folder. (It’s just a trick…)
Forum: Installing WordPress
In reply to: display error in wp-admin/install.phpYupe, edit the wp-config-sample.php. Save as wp-config.php then upload it to your server…
Forum: Themes and Templates
In reply to: Works for IE not Netscape, sigh.If you want the white background and “double” grey border appears, why don’t you just use the background image (e.g. width: 800px height:2px or arrange the width as you like). And use this style (just example):
#b1 {
margin: 0 auto;
width: 800px;
background: #fff url ('img/bg.jpg') repeat-y center;
}
You don’t have to use 3 divs that overlap each other…
Forum: Themes and Templates
In reply to: Need help. How much?jwusrster was right! It is fun to learn changing a theme on your own.
But, if you do need help, I think I can help you out (for free!). You want a “One-Column” template for your blog, don’t you? Well, I had made one. You can contact me by filling the contact form on my weblog (Just view my profile!)
Forum: Plugins
In reply to: Gravatar and its codeSome css trick maybe? Here I put my gravatar code on my comment page:
<div style="float:left; margin-right:5px; background:#eee url('<?php gravatar("R", 60, "http://www.aban.web.id/wp-images/gravatar.gif", "eee"); ?>')no-repeat; width:60px; height:60px;"><img src="http://www.aban.web.id/wp-content/themes/v40/images/grav.gif" alt="Gravatar Image" /></div>
with gif image as a border…