My need is as following:
BUT I WOULD LIKE TO DISABLE THAT FEATURE
Can any body help ?
I can do any work arround using: PHP, jQuery
You could use jquery to intercept the clicks on any link in that div and then have them return false, right?
$('#likebox a').click(function() { return false; });
Maybe?