View Single Post
  #6 (permalink)  
Old 06-21-2007, 12:50 AM
jc007 jc007 is offline
Casual Pligger
 
Join Date: Mar 2007
Posts: 76
Thanks: 9
Thanked 0 Times in 0 Posts
Great mod, thanks!

However, would recommend instead of using

This
{else}
<a href="{$story_url}"{if $Voting_Method eq 1} onclick="javascript:{$link_shakebox_javascript_vot e}"{/if}>{$title_short}</a>
{/if}
{/if}
</div>

I recommend this
{else}
<a href="{$story_url}"{if $Voting_Method eq 1 && $link_shakebox_currentuser_votes eq 0 && $link_shakebox_currentuser_reports eq 0} onclick="javascript:{$link_shakebox_javascript_vot e}"{/if}>{$title_short}</a>
{/if}
{/if}
</div>


This will about getting the popup saying that the story is already voted
Reply With Quote