vBulletin 4, the most powerful community software + vBSEO 3.5, the ultimate SEO solution = Your ultimate platform for 2010 and beyond. Click below to learn more.

Results 1 to 15 of 15

Digg This Button - Very usefull

This is a discussion on Digg This Button - Very usefull within the vBSEO Features Archive forums, part of the vBulletin Links & Resources category; Hi, It'll be great if vBSEO can have such a feature. I admit that we already have Social Book marking ...

  1. #1
    Member
    Real Name
    Hemanth Jose
    Join Date
    Dec 2006
    Location
    India
    Posts
    96

    Digg This Button - Very usefull

    Hi,

    It'll be great if vBSEO can have such a feature. I admit that we already have Social Book marking buttons.

    The feature i need is one which detects the refbacks and shows the Diggthis Button with current diggs. Digg API has all explained.

    Here is such a plugin for Wordpress:

    » Digg This - Wordpress Plugin Aviran’s Place - The Technology Hangout

    Thank you very much..

    PS: Or somebody please suggest how to implement it in vB.
    Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Share on Facebook!

  2. #2
    Senior Member Brandon Sheley's Avatar
    Real Name
    Brandon Sheley
    Join Date
    Oct 2005
    Location
    Kansas
    Posts
    2,208
    Blog Entries
    1
    there is a digg button with vbseo already
    Are you on Twitter? @BrandonSheley | Social Media blog
    Latest projects: General Forums | TopekaTweetup
    Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Share on Facebook!

  3. #3
    Senior Member BamaStangGuy's Avatar
    Real Name
    Brent Wilson
    Join Date
    Aug 2005
    Location
    Huntsville, Alabama
    Posts
    2,447
    Quote Originally Posted by Loco View Post
    there is a digg button with vbseo already
    Not the one he is asking for
    Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Share on Facebook!

  4. #4
    Senior Member Brandon Sheley's Avatar
    Real Name
    Brandon Sheley
    Join Date
    Oct 2005
    Location
    Kansas
    Posts
    2,208
    Blog Entries
    1
    oh, it shows the count ?
    maybe it can be added with the extra social bookmarks option in rc8 ?
    Are you on Twitter? @BrandonSheley | Social Media blog
    Latest projects: General Forums | TopekaTweetup
    Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Share on Facebook!

  5. #5
    Member
    Real Name
    Hemanth Jose
    Join Date
    Dec 2006
    Location
    India
    Posts
    96
    Quote Originally Posted by Loco View Post
    oh, it shows the count ?
    maybe it can be added with the extra social bookmarks option in rc8 ?
    Dunno.. But it needs a bit of code for sure.

    Will it be cool if there is something like this in your threads.



    The Wordpress plugin is attached. Can anybody please help?
    Attached Files
    Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Share on Facebook!

  6. #6
    Senior Member
    Real Name
    John
    Join Date
    Dec 2005
    Posts
    584
    That's a good idea. It would make it more apparent that people have actually dug a thread too.
    Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Share on Facebook!

  7. #7
    Member
    Real Name
    Hemanth Jose
    Join Date
    Dec 2006
    Location
    India
    Posts
    96
    I have posted a hack request in vB.org. Maybe somebody able to develop it. But i'll glad if vBSEO can offer it as it already have that ref check etc.
    Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Share on Facebook!

  8. #8
    Senior Member BamaStangGuy's Avatar
    Real Name
    Brent Wilson
    Join Date
    Aug 2005
    Location
    Huntsville, Alabama
    Posts
    2,447
    I always wanted this myself. All I want it to do is show if the thread is submitted to digg. I don't want it to show for every thread
    Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Share on Facebook!

  9. #9
    Senior Member Brandon Sheley's Avatar
    Real Name
    Brandon Sheley
    Join Date
    Oct 2005
    Location
    Kansas
    Posts
    2,208
    Blog Entries
    1
    if it would only show when a thread has been submitted to digg, that would be nice.
    Are you on Twitter? @BrandonSheley | Social Media blog
    Latest projects: General Forums | TopekaTweetup
    Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Share on Facebook!

  10. #10
    Senior Member
    Real Name
    John
    Join Date
    Dec 2005
    Posts
    584
    Digg just recently made it easier to use their buttons.

    Just added this to my postbit so it appears only in the first thread in the upper right:

    Code:
            <if condition="$show['messageicon'] OR $post['title']">
                <!-- icon and title -->
                <table width="100%">
                    <tr>
                    <td>
                        <div class="smallfont">
                            <if condition="$show['messageicon']"><img class="inlineimg" src="$post[iconpath]" alt="$post[icontitle]" border="0" /></if>
                            <if condition="$post['title']"><strong>$post[title]</strong></if>
                        </div>
                    </td>
                    <if condition="!$GLOBALS['FIRSTPOSTID']"> 
                    <td align="right">
                            <script type="text/javascript">
                            digg_bgcolor = '#F1F1F1';
                            digg_skin = 'compact';
                            </script>
                            <script src="http://digg.com/tools/diggthis.js" type="text/javascript"></script>
                    </td>
                    </if>
                    </tr>
                </table>
                
                <hr size="1" style="color:$stylevar[tborder_bgcolor]" />
                <!-- / icon and title -->
            </if>
    
    digg_bgcolor is your thread bg color. Just hard coded it.

    Here's an example of it in action: Nokia E62 Review - Cell Phone Forums
    Last edited by tavenger5; 02-08-2007 at 12:00 AM.
    Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Share on Facebook!

  11. #11
    Senior Member BamaStangGuy's Avatar
    Real Name
    Brent Wilson
    Join Date
    Aug 2005
    Location
    Huntsville, Alabama
    Posts
    2,447
    Sweet! Thanks
    Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Share on Facebook!

  12. #12
    Member
    Real Name
    Hemanth Jose
    Join Date
    Dec 2006
    Location
    India
    Posts
    96
    Thanks tavenger5.. It seems working.. Again i proved myself as a **** head.
    Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Share on Facebook!

  13. #13
    Senior Member
    Real Name
    John
    Join Date
    Dec 2005
    Posts
    584
    Quote Originally Posted by Hemanth View Post
    Thanks tavenger5.. It seems working.. Again i proved myself as a **** head.
    By recently I mean they changed it like 2 days ago.
    Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Share on Facebook!

  14. #14
    Senior Member BamaStangGuy's Avatar
    Real Name
    Brent Wilson
    Join Date
    Aug 2005
    Location
    Huntsville, Alabama
    Posts
    2,447
    How can I make it appear on the first page only?
    Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Share on Facebook!

  15. #15
    Senior Member
    Real Name
    John
    Join Date
    Dec 2005
    Posts
    584
    Code:
    THIS_SCRIPT == 'showthread' AND  $post[postid] == $GLOBALS['qrfirstpostid']
    
    I found that method works better in firefox anyway. The other one seems to screw things up on quickreply.
    Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Share on Facebook!

Similar Threads

  1. Banned from Digg
    By Notorious in forum vBSEO Features Archive
    Replies: 15
    Last Post: 11-02-2006, 02:25 PM
  2. Digg Says - Don't ask to be Dugg
    By Ace Shattock in forum Off-Topic & Chit Chat
    Replies: 2
    Last Post: 09-17-2006, 09:20 PM
  3. DIGG URLs The Return
    By skoenig in forum Troubleshooting
    Replies: 12
    Last Post: 09-10-2006, 09:39 PM