Author Archives for

How to make Google Chrome Your Default Browser

Do you want to make google chrome your default browser for your windows operating system. Here is how you can do it. During the installation of Google Chrome, you have the option to make it your default browser that opens when most Windows programs request a browser to view a webpage. But if the setting is change for some reason follow the below steps.
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.

How to change Wordpress Nextgen Gallery Title Separator

Browse through the lib directory. You will find a file name ‘rewrite.php’ . find this

$sep = ‘ &laquo; ‘;

Change the variable with some character you want. In my case i did this

$sep = ‘ – ‘;

Check the title Now.