iCandy Theme

Gorgeous Theme packed with tons of features and options. Custom header image, changeable background color, flexible sidebar width and location, paged navigation, widget ready.

Read More…

Load twitter updates faster

Most of the personal blogs these days have twitter feeds. One of the bottleneck while loading the page in the site is Twitter, since it takes time to load the tweets. There is a technique that I have used for my site which can be handy in loading the twitter feeds fast. Basically, I have used cookies to store my twitter updates and display the updates by reading the cookies. (Obviously, this won’t work if you have disabled cookies in your browser settings).

So let’s dive into the code. First I will show you the JavaScript functions I have used to set/read/delete cookie. Create a JavaScript file : “fasttwittter.js” or any name you want.

Note: I am specifying my cookie expiry in hours. If you want to do that in seconds then remove both the “60″s from the createCookie function and if you want to set it in minutes then remove only one “60″ and if you want to set it for days then multiply below value by 24. i.e seconds*24*60*60*1000.

function createCookie(name,value,hours) {
if (hours) {
var date = new Date();
date.setTime(date.getTime()+(hours*60*60*1000));
var expires = "; expires="+date.toGMTString();
}
else var expires = "";
document.cookie = name+"="+value+expires+"; path=/";
}

function readCookie(name) {
var nameEQ = name + "=";
var ca = document.cookie.split(';');
for(var i=0;i < ca.length;i++) {
var c = ca[i];
while (c.charAt(0)==' ') c = c.substring(1,c.length);
if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
}
return null;
}

function eraseCookie(name) {
createCookie(name,"",-1);
}

Read More…

Multi-Color Theme

Multi-colored theme with 3 gorgeous color schemes. Different two or three column layouts. Footer Widgets. Options to customize the theme. Fixed-width, paged Navigation and threaded comments. Built-in bookmarking feature. Compatible with wordpress 2.7 and higher upto 2.9.x. Valid XHTML and CSS. Compatible with IE 7+, Firefox 3.0+, Safari 3.0+, Chrome

Read More…

VideoGall Plugin

Display a video gallery on your site. Add videos from different sites through the admin panel and get a beautiful video gallery with ShadowBox effect. Also available are options to edit or delete already added videos. Videos can be categorized and displayed according to their categories aswell.

** Recent Update 1.5 **

1. Now you can categorize your videos and display according to categories
2. You can also provide a thumbnail image link for those videos whose thumbnails could not be fetched automatically.

Read More…

iPhoneLike Theme

iPhone look two column theme. Web 2.0 look with big fonts. Tabbed content in sidebar. Fixed-width, widget-ready, translation-ready, paged Navigation and threaded comments. Options available for customizing. Jquery powered comments. Compatible with wordpress 2.7 and higher upto 2.8.5. Valid XHTML and CSS. Compatible with IE 7+, Firefox 3.0+

Read More…