Archive for the ‘Wordpress’ Category

How to make WordPress Twitter Tools Plugin XHTML Valid

Friday, September 3rd, 2010

A common error occurs when including a URL which contains an ampersand (“&”). WordPress Twitter Tools Plugin by Alex King do this, I mean put & in the url. So we have to replace & with it’s equivalent &
(more…)

How to nofollow blog comments powered by DISQUS link

Wednesday, September 1st, 2010

Are you using Disqus comment plugin for WordPress? The plugin generates a followed link Titled “blog comments powered by DISQUS”. If you want to nofollow the link follow the tutorial below (more…)

How to nofollow links in default related posts widget of WordPress

Wednesday, September 1st, 2010

Find the file default-widgets.php in wp-includes folder of WordPress Installation. Keep a backup of the original file incase you make mistake. Find the following lines of code under Recent_Posts widget class (more…)

How to disable WordPress 2 Visual Editor

Monday, May 3rd, 2010

A lot of people I’ve spoke to, and many blog posts I have read have been really unhappy with the new visual editor in WordPress 2.0. It is pretty simple to revert back to the traditional post interface without all the WYSIWYG additions, but a lot of people aren’t sure how, or where to find the option. Click the “Users” menu in the WP admin area to access your profile. Once you are on the “Users” page scroll to the bottom of the page, and uncheck the “Use the visual editor” option. Once you have done this click the save button and you are back to the old, comfortable, pre-2.0 interface that we all love.

Original Article : Here

How to remove WordPress Trackback Spam

Thursday, March 4th, 2010

I have recently found lot of trackback spam in one of my WordPress installation. Here is an article which will help you to remove trackback spam from SERP (Search engine Result Page).
(more…)

WordPress administrator forgot Admin Password – How to reset?

Monday, February 22nd, 2010

wordpress logoLost your WordPress Admin Password . You don’t have any other admin password also. Need to reset your forgotten WordPress Admin Password? Here i will tell you how you can reset your forgotten WordPress administrator password. (more…)

How to Remove WordPress Top 10 Plugin’s Dashboard Pagination

Sunday, February 21st, 2010

For Those Who are still not familiar with Top 10 Plugin of WordPress -

WordPress doesn’t count page views by default. Top 10 Plugin will count the number of page views on your single posts on a daily as well as overall basis. You can then display the page view count on individual posts and pages as well as display a list of most popular posts based on page views.

Includes a sidebar widget to display the popular posts. And, all settings can be configured from within your WordPress Admin area itself! You can choose to disable tracking of author visits on their own posts.

The Plugin also comes with a Admin Dashboard widget which displays the daily and overall stats in WordPress Dashboard. The admin widgets shows a pagination bellow. If you have lot of posts the pagination counts display gets long and nasty. (more…)

Archive Page Template Customization the_excerpt Tag

Thursday, November 26th, 2009

Recently I am redesigning a general WordPress Archive Template. The Template file for archive category or tag pages is archive.php if tag.php is not present.

changed the

<?php the_content( $more_link_text, $strip_teaser, $more_file ); ?>

to this code

<?php the_excerpt(); ?>

The display has become much more cleaner than before. Only The title and a excerpt of the main content is being displayed.

How to change Imagebrowser Template of Nextgen Gallery in WordPress

Thursday, November 26th, 2009

To change the imagebrowser Template of Nextgen Gallery I have followed and did following steps.

in the /css/nggallery.css file find .pic class which is set to width: 100%. Comment the line out.

1
2
3
4
.ngg-galleryoverview div.pic img
{
/*width: 100%;	*/
}

in the /css/nggallery.css file find .ngg-imagebrowser img which is set to width: 100%. Comment the line out.

1
2
3
4
5
6
7
8
9
.ngg-imagebrowser img
{
border:1px solid #A9A9A9;
margin-top: 10px;
margin-bottom: 10px;
/*width: 100%;*/
display:block !important;
padding:5px;
}

Now the change the template of the file you need to edit /show/imagebrowser.php. The first thing I have done is I got the Navigation links section up from bellow the picture. It is more accessible than the default design of one of the best image gallery plugin for wordpress.

WordPress 2.5 SECRET_KEY and SALT Cracking Vulnerability

Friday, May 2nd, 2008

SECRET_KEY is the new addition to wordpress Security which is introduced in the WordPress 2.5. SECRET_KEY is used to secure WordPress Cookies. But an attacker can use this Key to intrude the WordPress system. In a recently found vulnerability discovered by xiam and published in Security Focus shows that an attacker can get into the system through this technique.
(more…)