Added Language Pack
I have added a Traditional Chinese language pack due to a request from a friend. Just go to Options tab and change the language to zh_TW. Thats it.
Filed under: WordPress | No Comments »
I have added a Traditional Chinese language pack due to a request from a friend. Just go to Options tab and change the language to zh_TW. Thats it.
Filed under: WordPress | No Comments »
Finally found the solution for the WPMU Captcha error where I keep getting “Please enter correct code” when trying to register for a new blog. This was fixed by adding just one code of line to your wp-signup.php file
Add the line
session_start();
after this
function validate_user_signup() {
$result = validate_user_form();
extract($result);
in the wp-signup.php so that it looks like this:
function […]
Filed under: Plugins, WordPress | No Comments »
I needed a way to add Advertlets poll on my blog easily. So I took the Chitika widget plugin and have a little hack at it and came out with the Advertlets widget. I’m using WPMU for my blog and only tested with it. It should be able to work with any WordPress version.
This widget […]
Filed under: Plugins, Widgets, WordPress | 2 Comments »