Tag Archives for Wordpress

How to nofollow blog comments powered by DISQUS link

nofollowAre 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 Continue Reading »

How to nofollow links in default related posts widget of WordPress

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 Continue Reading »

How to search inside Text Files in Ubuntu

Today I was working on a WordPress mod and I wanted to find a file which includes a specific class definition. Honestly I am not that good in Ubuntu Command Line Interface. Here is the command you will need to find a text file with your searched keyword Continue Reading »

How to disable WordPress 2 Visual Editor

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

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).
Continue Reading »

WordPress administrator forgot Admin Password – How to reset?

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. Continue Reading »

How to Remove WordPress Top 10 Plugin’s Dashboard Pagination

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. Continue Reading »

How to edit or modify encrypted footer of WordPress Template

I have recently came across a encrypted footer.php of a WordPress Template File. Developers mostly doing this to keep their link in the website footer.  Here is how you can modify the wordpress footer template.

open the encrypted footer.php and add this line before the encrypted code. Continue Reading »

Archive Page Template Customization the_excerpt Tag

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

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.