Recently we upgraded Goelji.com to WordPress MU 2.7. And, along came some
In WordPressMU 2.7 there is a new admin bar. It has settings so users can see it on the admin panel side if they are logged in, and a wonky bit to switch between blogs that may have a few bugs.
For any reason if you don’t want it then here’s how to disable it.
Go to wp-config.php (you will get it where you installed WordPress MU). Edit it.
Find the following lines in wp-config.php
// Uncomment to disable the site admin bar
//define( ‘NOADMINBAR’, 1 );
Now, uncomment the second line i.e. remove those // in front of the word “define”?
That’s it. BINGO!
In a freshly installed copy of WPMU 2.7, you’ll find these lines in wp-config.php when WPMU is up and running.
In case of upgraded WPMU 2.7, check the config-sample.php and make sure you copy these lines into your existing wp-config file.
The latest feature from Google Labs can be a headache to Microsoft who has dominated the Desktop mail client industry since its existence with their “Microsoft Outlook”.
You can now access your Gmail account even when you are not connected to Internet. With new Gmail Labs feature, Offline Google allows you to access your inbox through your browser and use all of Gmail’s familiar features such as search, labels and conversation threading even without internet access. You need to have Google Gear to use Gmail Offline.
Here is what the Google team has to say about Offline feature:
“Make Gmail go where the Internet doesn’t. Access your inbox through your browser and use Gmail’s familiar features when you’re offline. To get started, enable this lab and then click on the "Offline" link in the upper-right of your inbox.”
To use the Gmail in Offline mode you will have to activate the Offline function from
- Go to Setting (from top of the page)
- Click on tab titled “Labs”
- Enable the Offline feature.
Read more about “Offline Gmail” right from Google Gmail help blog.
To change the default search engine box on the top-right corner of FireFox:
This is how you can change it:
in the address bar of FireFox, type: “about:config”
In the box marked filter, type: “browser.search.defaultenginename”
Double click the value field or right click and choose Modify that value, by in the name of the search engine you wish to have as the default search engine. It must be one that you already have installed and also make sure you type in the name correctly.
Now if you type in “Yahoo”, restart Firefox and when your browser comes back you will see “red Yahoo Logo” and Yahoo as your default search engine box.
Then save that by pressing “Ok”.
Every browser like FireFox or IE does searches on a default search engine set some where in its configuration. Changing this default search engine is a little bit tricky, but not anymore. Deepak, my friend, installed a chat software from RediffBol which also changed the default search engine as Rediff Search but he now wants to change it back to Google [my fav].
This is how you can get it done:
in the address bar of FireFox, type: “about:config”
In the box marked filter, type: “keyword.url”
Double click the value field and modify that value, by pasting:
“http://www.google.com/search?ie=UTF-8&oe=UTF-8&sourceid=navclient&gfns=1&q=”
Then save that by pressing “Ok”.
Now, you can use your address bar just as google search bar. Go nuts, since now you can search by entering the search terms in the address bar and pressing enter. This way you never need to visit www.google.com again!!!
If you view a single post of a blog, you will see the author information at the bottom. Here we will see that how we can display such author info in a wordpress blog. That info can be edited in the control panel under Users->Your Profile.
The author’s photo can also display the image using avtars:
<img src="<?php echo get_option('home'); ?>/wp-content/themes/mimbo2/images/<?php the_author_lastname(); ?>.jpg" alt="" />
The author’s name is called like this:
<?php the_author_posts_link('namefl'); ?>
The author’s bio is called like this:
<?php the_author_description(); ?>
The author’s email is called like this:
<a href="mailto:<?php the_author_email(); ?>" title="Email this author">Email this author</a>
That seems like a pretty good start for building your own template themes. Now it’s up to the client to hire some talented writers and hope for the best.