I may have just figured this out for myself...
In libs/link.php find:
Code:
$jsreportlink = "vote($current_user->user_id,$this->id,$link_index," . "'" . md5($current_user->user_id.$this->randkey) . "',-10)";
and add the following after:
Code:
$jsneutrallink = "vote($current_user->user_id,$this->id,$link_index," . "'" . md5($current_user->user_id.$this->randkey) . "',1)";
Then find:
Code:
$smarty->assign('link_shakebox_javascript_vote', $jslink); and add after:
Code:
$smarty->assign('link_shakebox_javascript_neutral', $jsneutrallink); In your template/link_summary.tpl file you need to add the following wherever you need the vote option to display:
Code:
<a href="javascript:{$link_shakebox_javascript_neutral}">*your text or image here*</a> I had to make the neutral vote count for 1 instead of 0 so that it recognized the vote.
Does this cause other problems? Working for me.