Updating iNove to work with KeywordLuv plugin
October 5th, 2009
Last week I discussed a new wordpress plugin that got me excited: KeywordLuv. I also promised to show you how I fixed the issue with iNove theme. Here it goes:

The main issue is that the iNove theme uses the get_comment_author_url() and the KeywordLuv works on a different method, the get_comment_author_link(). So, here are the steps to update your iNove theme in a way that the author will show the Author name and the keywords properly:
- Go to your Wordpress admin area
- Install the DoFollow plugin
- Install the KeywordLuv plugin
- Go to the Appearance tab
- Click on the Editor (Themes Editor for wordpress)
- Click on the ‘Theme Functions‘ file (functions.php)
- Look for these lines of code around line 230:
<?php if (get_comment_author_url()) : ?>
<a id="commentauthor-<?php comment_ID() ?>" href="<?php comment_author_url() ?>" rel="external nofollow">
<?php else : ?>
<span id="commentauthor-<?php comment_ID() ?>">
<?php endif; ?>
<?php comment_author(); ?>
<?php if(get_comment_author_url()) : ?>
</a>
<?php else : ?>
</span>
<?php endif; ?> - Erase the above lines and instead insert the following code:
<?php echo get_comment_author_link(); ?> - Save by clicking the ‘update file’ & check your work
That should do it. Notice that this site already has it installed and working properly. Disclaimer: the steps above are provided with the intention that it may fix an issue – there is by no means a guarantee. Each blog is slightly different.
Let me know how this worked out for you.