Hi,
I had the same problem and I did this:
1- Import the JKW (Jerom’s Keyword) from here: (www.domain.com/yourblog/)wp-admin/admin.php?import=jkw (choose 1.x or 2.0a, 1.x is the most in use) it takes some times due the number of tags you have added to database.
2- Delete any thing related to JKW on your theme and deactivate the JKW plugin.
3- Go to the theme page you want to show up the tags, insert this line inside loop:
<?php if ( function_exists('the_tags') ) {
the_tags('before', 'seperator', 'after'); } ?>
which you can decide how to show the tags. Before is text befor the tag, ex. Tags or Keywords. Seperator is some comas or dashes to seperate the tags. After is the end of conversation, put dot or | or leave it blank.
I use this:
<?php if ( function_exists('the_tags') ) {
the_tags('Keywords:', ', ', ''); } ?>
Now, you are ready to go. All functionalities work perfectly.
to show the tag cloud use:
<?php wp_tag_cloud(''); ?>
any where in theme, ex. sidebar or ..
I had bad time till I got this works, and now I rest and watch it works great. hope it helps you out.