Archive | Articles RSS feed for this section

Best Time-Tracking Applications to Increase Your Productivity

21 Sep

Slimtimer

When you want to manage projects or monitor your daily work flow, since there are lots and lots of products available online! you need to get into web and have to decide which app will be good for your requirement.

Read More

5+ Best places to sell your WordPress themes

18 Sep

5+ Best places to sell your WordPress themes

There are hundreds and thousands of bloggers rising each day and maximum peoples in these days are looking for a unique and easily manageable WordPress theme. Even though there are lots of free versions of WordPress themes available, There is a huge gap available for the custom made themes. Since each one is representing different niches say for example , blogging, beauty, health, design, gardening, computers, lifestyle, making money online, portfolio and the list goes on…

“Designing a premium WordPress theme and coding the functionalities is what I like most and we are team of WordPress experts” but we are struggling to market them.

Below are some of the best online marketplaces to sell your WordPress themes.

Read More

How to Integate Pagination in WordPress without Plugins

30 Aug

How to Integate Pagination in WordPress without Plugins

Many of us will be in this situation, where we have to split the content into multiple pages for better accessibility. Luckily wordpress supports pagination concept and we can implement it on the fly using this simple code below

<?php next_posts_link('&laquo; Older Entries') ?><?php previous_posts_link('Newer Entries &raquo;') ?>

Where in recent days we used to see paginations with numbers, below are few beautiful examples.

Read More

Adding Avatar to WordPress Default

24 Aug

Adding Avatar to WordPress Default

Introduction

In WordPress, there is a nice solution via a hook, which enables to add an avatar in the list of your backend and to make a selection to our own styled avatar. In the following section I like to show a simple code snippet which explains how to add new avatar to the array of WordPress.

You have to add the snippet shown in the screenshot to functions.php of your theme and it will add Avatar from your images folder of your theme directory.

When the theme becomes active, you will have two new Avatars available in your list.


#adding our own avatar

function own_gravatar($avata_defaults) {

$my_avatar = get_bloginfo('template_directory').'images/our_gravatar.jpg';

$avatar_defaluts[$my_avatar]="Our Avatar name";

return $avatar_defaults;

}

add_filters('avatar_defaults','own_gravatar');

How to do

own_gravatar() function provides the location of the image which is in the images folder of the WP installation directory and assigns a name Our Avatar name to it. And finally the output is sent back to default avatars (avatar_default) which displays the gravatar in the default gravatar list in the dashboard.

Now go to your Dashboard->Setting->Discussion. Scroll down the page and select your new default gravatar. And you are done.

You can customize the look’ by editing the style properties for gravatar class in the style.css file.


Guidelines for Slow Internet Connection Users

6 Jul

Guidelines for Slow Internet Connection Users

How to download your favorite media like music, videos with slow internet connection? This is possible even if are using slower internet connections like mobile internet (less than 115kbps). How? First we decide what content we are downloading and take appropriate actions wisely.

Read More