June 19, 2013

Arrange Facebook Avatar

I’ve seen most of you have Facebook avatar disarranged. It looks weired when you don’t arrange your Facebook avatar. Here is the example of arranged Facebook avatar of DigitalBunch:

Facebook Avatar

It looks good! So, here is how to do it.

Digital Bunch Facebook

Log on to you Facebook account and go to your profile. On the top left sidebar, hover your mouse on the profile image and click Change Picture > Edit Thumbnail.

Pop-up window appears, then again hover your mouse on the avatar of “Edit Thumbnail’ window. Then arrange your avatar by dragging and dropping in the specific position where it looks better. Click Save button once it is done.

How to: Check Page Rank of Inner Pages

You can easily check your page rank of the homepage of your website or blog using any PR checker tool. But it would be better if you know the PR of inner pages of your blog.

The fantastic SEO tool called SEOQuake can help to check the page rank of each inner page of your blog/website. Lets see how easily you can check the PR of each inner pages.

Fist, you have to install SEOQuake for your browser. Then active SEOQuake extension. Now use the following query to search your site in Google:

site:yourdomain.com

Replace yourdomain.com with your domain name. Then under each links, you’ll see the detail report of the inner pages of your blog or website. See below:

Inner Page Rank

So from now, you came to know how easy is the find the page rank of inner pages!

How to: Place Subscribe to Comments Check Box Above Submit Button

Subscribe to comment is most well know WordPress plugin used to subscribe to the comment pages with a single click. It automatically notify to subscribed users via email if there is new comment on the page. Once you installed this plugin, subscription check box appears below “Submit” button of each pages of comment section.

Notify Comment

Most of the commentator may not notice Notify me of followup comments via e-mail check box which contains after the submit button. But its more better to place it above “Submit” button of comment form for easy visual. So, lets see how we can do that.

First you have to install and active Subscribe to Comment plugin. If you already have it, then just skip this step. Locate the following folder in your hosting account.

/public_html/wp-content/themes/YOUR_THEME_NAME/lib/functions

Make sure you have replaced YOUR_THEME_NAME with your theme name. Then edit comment_functions.php file.

Subscribe to Comment

Now, search for the follow lines:

<textarea name=”comment” id=”comment” tabindex=”4″></textarea>
<button type=”submit” name=”submit” id=”submit” tabindex=”5″>

Note that the above code may vary from different template. Paste the following code between the above lines.

<?php show_subscription_checkbox(); ?>

Then it must look like this:

<textarea name=”comment” id=”comment” tabindex=”4″></textarea>

<?php show_subscription_checkbox(); ?>

<button type=”submit” name=”submit” id=”submit” class=”button” tabindex=”5″>

Save the file and your’re just done! Load any of your blog post page and view the comment section. Now, subscription option but appear below comment form or above “Submit Comment” button. From now, your reader can easily notice comment subscription option.

How to Find Category ID in WordPress

In some of the advanced WordPress theme you need to manage the navigations menus with categories and pages. Usually, you can choose the category or page to display in navigation bar. But in some cases you need to know the ID of each category. Definitely, it may be difficult to find distinct ID’s of each category.

So, I’m going show, how you can easily find the category ID’s easily. Just follow the steps below:

In the WordPress > Posts, Categories, hover your mouse to the category of which you want to know the ID.

category

Then you can see the URL on the bottom of your browser. The last number after the text “ID=” is your category ID. In my case my category ID is 1.

hover

Now you can copy the category ID and use it wherever you want!