Hello I need help with this plug. I place it in the loop of my index and my post page and it doesn't show up! Has anyone had this same issue? And how did you fix it. Thank you in advance! -Doug
It only shows up once someone has Dugg one of your posts and someone visits your site from Digg. You don't really need that plugin anymore, Digg has released a simple code snippet that can do the same thing: <script src="http://digg.com/tools/diggthis.js" type="text/javascript"></script> Code (markup): plus it has the added benefit of allowing people to submit the story, which the Digg IT plugin doesn't do.
Where can I put this code in my wordpress theme where it shows the page of the article it is in on the index rather than the index it'self? www.Technati.com
If there is a "single.php" file in your template, put your script in. if there is no template file for post, try something like this :
Got it to work! I put this <script type="text/javascript"> digg_url = '<?php the_permalink() ?>'; </script> <script src="http://digg.com/tools/diggthis.js" type="text/javascript"></script> Code (markup): Thanks for the help everyone!