As you might remember, a while ago I’ve recommended you the plugins developed by GeekyWeekly: My Link Order, My Page Order and My Category Order.

I’d still recommend them to everyone how wants to organize his blog easier and better, even if recently I’ve found out that the My Link Order plugin generates an XHTML validation error, specifically: it creates an ID duplicate for each blog roll category that you add.

The validation error could look like:

ID "mylinkorder" already defined

or

anchor "mylinkorder" already defined

My Link Order Fix

So, how to fix this? Actually it’s pretty simple.

1. Navigate to your plugins folder and open for editing the mylinkorder.php file;

2. Find this line of code:

'category_before' => $before_widget, 'category_after' => $after_widget,

Depending on the plugin version, it should be between lines 180 and 200.

3. Comment the like by adding 2 slashes at the beginning, so the end result would look like:

//'category_before' => $before_widget, 'category_after' => $after_widget,

4. That’s it! Upload the file and enjoy your valid ordered blog.