Archive

Archive for the ‘Wordpress’ Category

How to Fix Ugly Sidebar in Wordpress iNove Theme

August 5th, 2009 Masao No comments

The iNove theme gives your wordpress blog a Mac-ish look and feel. However, the sidebar has some ugly built-in widgets. Here’s how to remove them.

In themes/inove/sidebar.php, remove everything between these lines:

<!-- sidebar north END -->
...
delete everything here
...
<!-- sidebar south END -->

Done!

Categories: Wordpress Tags:

Adding Wordpress Categories programmatically using Perl/LWP

March 25th, 2008 Masao No comments

Comment out one line in this file:

wp-admin/admin-ajax.php (around line 586)

case ‘add-cat’ : // From Manage->Categories
#check_ajax_referer( ‘add-category’ );

Now you can submit categories using Perl/LWP!