1 baileyjs Feb 28, 2008 18:18
3 baileyjs Feb 28, 2008 19:10
Yes and no.
1) I don't have any other digg plugin installed. I did at one point, but I uninstalled that item before my upgrade from 1.10 to 2.4. And I reloaded all the plugins.
2) It's the default that Digg would give you unless you specified
digg_skin = 'compact' or
digg_skin = 'icon'
in the Digg Javascript [url=http://digg.com/tools/integrate](link)[/url] . I have specified 'icon', and since it's in the middle of all the other icons I have in the plugin settings I'm confused asbout how this one, and this one only, is affected.
4 afwas Feb 28, 2008 19:21
It may have come from Digg, like clicking the tiny icon activated the appearance of the large icon.
But I'm only throwing guesses at you.
5 baileyjs Feb 28, 2008 19:54
If there had been a number there, such as 1 Digg, I could understand. But there was no such indicator.
Making matters more confusing, I just now added those bookmarks to a post made three days ago, and got all the icons I expected. Very odd.
6 troy Mar 02, 2008 00:48
I've had the same problem exactly, <i>and</i> it slows the whole blog down drastically while it loads. I'd use a text link instead, but I don't know the code.
7 lynnema Mar 04, 2008 18:34
Has anyone resolved this issue with the Digg link? I'm having the same problem. If I use the 'icon' skin it doesn't look anything like the thumbnail that was downloaded, with the little thumb... TIA!
8 loup Apr 10, 2008 01:40
I had this too. I made sure the other Digg plugin was uninstalled, but to no avail. Also, I had an iframe in the sidebar that normally showed a shoutbox, but for some reason it became one enormous digg icon! I can only guess that the digg js uses some kind of iframe and they got mixed up. In any case, now I have removed the digg code and just use the others, but whether or not they are written to the document seems arbitrary at best. Some posts, all of them appear. On others, only a few.
What I want to know really is whether or not I could ditch the js altogether and just use php to generate the code for the image links in an external file, and insert the php through an include in a skin file, and switch off the plugin?
9 loup Apr 10, 2008 01:40
Oh, hi by the way. Spot the newbie...
10 afwas Apr 10, 2008 01:47
Hi loup,
Welcome to the forums.
I have even spotted a Digg button in the backoffice. That code is really crude! In the BEA Social Boolmark plugin you can add the code you want. For Digg I currently have:
<script type="text/javascript">
digg_skin = 'icon';
digg_window = 'new';
digg_url = '$permanent_url$';
digg_title = '$title$';
</script>
<script src="http://digg.com/tools/diggthis.js" type="text/javascript"></script>
which gives another image, but works fine.
I'll see if I can find taht image again.
Good luck
11 afwas Apr 10, 2008 01:52
12 loup Apr 11, 2008 17:59
In the end I just replaced that digg code with the following: -
<script type="text/javascript">
document.write(' <li><a rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&url='+encodeURIComponent('$permanent_url$')+'&title='+encodeURIComponent('$title$')' title="Submit to Digg"><img src="[yourdomain]/blog/plugins/socialbookmarks_plugin/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>');
</script>
It works fine now. (I snagged the idea from a WP plugin, btw. I'd still prefer to use PHP though - I'm trying to cut down on JavaScript as my blog is crammed with it already).
This one looks like it's from the Digg plugin, not the Social Bookmark plugin.
But it may be the Social Bookmark plugin is made out of the Digg plugin.
The large image is from Digg (plugin)
Does this help?