After reviewing this issue further, I found that there was a two line section in one of these files that could be the root of the issue. In the folder path of: wp-content/plugins/wp-click-track there is a file called template.inc.php. In that file, there are a couple of lines like the following:
if (!current_user_can('manage_links'))
wp_die(__("You do not have sufficient permissions to edit the links for this blog."));
This is on line 122 & 123 (for my version of 0.7.3.) I simply commented out those two lines by adding two forward slashes and the plugin started working, without the “Link Manager” plugin being added.
So in template.inc.php replace:
if (!current_user_can('manage_links'))
wp_die(__("You do not have sufficient permissions to edit the links for this blog."));
with:
// if (!current_user_can('manage_links'))
// wp_die(__("You do not have sufficient permissions to edit the links for this blog."));
Again, I am NOT the developer but this worked for me. Use at your own risk; I have no known knowledge of what ramifications this may cause. From what I can tell, however, is that the “Link Manager” is a feature that used to be built into WordPress, but has since been retired. Hopefully the developer can comment as to whether this is a viable solution or not. But for now, I’m going to continue with this and just monitor this for any issues. So far, it’s working fine on a site with a good amount of traffic.
@garymgordon – I understand your position and frustration… But this is a free plugin; not one that you had to pay for – so to expect the same support as a premium plugin I feel is unjust. WordPress is driven by community helping one another out, same goes for these plugins I feel. We really don’t know what the situation with the developer is. Maybe they lost interest (which would be sad, you’re right). But then again, maybe they’re dealing with some personal issue right now and not able to dedicate any free time to this plugin. Maybe their just busy with their actual job. We don’t know. I just don’t feel it’s right to criticize the developer for not fixing this right away. A little patience goes a long way… Hope you understand where I’m coming from.