Page 10 of 11 FirstFirst 1 2 3 4 5 6 7 8 9 10 11 LastLast
Results 136 to 150 of 157
Like Tree4Likes

Facebook "like" Button for Vbulletin

This is a discussion on Facebook "like" Button for Vbulletin within the General Discussion forums, part of the vBSEO SEO Plugin category; No I don't, Andres Thanks my man...

  1. #136
    Senior Member
    Real Name
    Mike
    Join Date
    Sep 2010
    Posts
    102
    Liked
    22 times
    No I don't, Andres Thanks my man

  2. #137
    vBSEO Staff Andrés Durán Hewitt's Avatar
    Real Name
    Andrés Durán
    Join Date
    Jul 2009
    Location
    Costa Rica
    Posts
    3,393
    Liked
    411 times
    Blog Entries
    1
    Great!
    Andrés Durán / Crawlability Inc.
    ˇvBSEO 3.6.0 GOLD Liberado!
    Inaugurando el NUEVO vBSEO Sitemap Generator 3.0. - ˇAHORA disponible para Clientes de vBSEO!

    Síguenos en: Facebook | Síguenos en: Twitter


  3. #138
    Senior Member
    Real Name
    Mike
    Join Date
    Sep 2010
    Posts
    102
    Liked
    22 times
    Glad to hear it works

  4. #139
    Junior Member
    Real Name
    Kimmo
    Join Date
    Mar 2009
    Posts
    19
    Liked
    0 times
    Hello

    I read this thread, but no help me, so i hope you can help me if i ask.

    I try but like -button to blog page -> Paapan Jaarituksia: Puhtaalta pöydältä - Blogit - KonsoliFIN BBS

    But its not work. Get somehow 15 like. And if i like, its not show that blog page in facebook, its show our main page KonsoliFIN - Etusivu :(

    code in blog_show_entry is this:

    Code:
    <!-- Facebook Like -->
    <iframe src="Facebook facebook_liked_url}&amp;layout=standard&amp;show_faces=false&amp;width=450&amp;action=like&amp;font=tahoma&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height:75px"></iframe>
    <!-- / Facebook Like -->

    And Plugin System:

    Product: vBulletin
    Hook Location: global_start
    Title: Facebook Liked vBSEO Integrationv
    Execution Order: 1
    Plugin PHP Code:
    Code:
    $facebook_liked_url = $_SERVER['VBSEO_URI'];

    can anyone help?

  5. #140
    Member kushal's Avatar
    Real Name
    Kushal
    Join Date
    Sep 2006
    Location
    India
    Posts
    33
    Liked
    0 times
    Blog Entries
    1
    Quote Originally Posted by Mert Gökçeimam View Post
    You may want to use for better url relevancy
    Code:
    href=http://www.vbseo.com/$facebook_liked_url/#post$post[postid]&amp;layout=standard
    Can you please give the full code for only allowing a particular post and not the complete thread?
    Forum Consultancy: Professional Community Setup Solutions

  6. #141
    Junior Member jacobsen1's Avatar
    Real Name
    Ben Jacobsen
    Join Date
    Jan 2010
    Location
    North Kingstown, Rhode Island, United States
    Posts
    23
    Liked
    0 times
    Quote Originally Posted by Mert Gökçeimam View Post
    Please add the following to your postbit or postbit_legacy template and make sure you replaced vbseo.com with your actual forum url

    Code:
    <!-- Facebook Like -->
    <iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.vbseo.com%2F{vb%3Araw+facebook_liked_url}&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;font=tahoma&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height:75px"></iframe>
    <!-- / Facebook Like -->
    Create a new plugin with the following content using

    Product : vBulletin
    Title : Facebook Liked vBSEO Integration
    Hook Location : postbit_display_start
    Execution order : 1

    PHP Code:
    $facebook_liked_url $_SERVER['VBSEO_URI'];
    vB_Template::preRegister('postbit',array('facebook_liked_url' => $facebook_liked_url));
    vB_Template::preRegister('postbit_legacy',array('facebook_liked_url' => $facebook_liked_url)); 
    OK, I used the above code and added it in a look like this:
    Code:
    <!-- Facebook Like -->
    <vb:if condition="$post['isfirstshown']">
    <vb:if condition="$bbuserinfo['field12']=='No'">
    
    <iframe src="http://www.facebook.com/plugins/like.php?href=http://newschoolofphotography.com/{vb:raw facebook_liked_url}&amp;layout=button_count&amp;width=450&amp;show_faces=false&amp;action=like&amp;colorscheme=dark&amp;font&amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:21px;" allowTransparency="true"></iframe>
    {vb:raw fblikebutton}
    
    </vb:if></vb:if>
    <!-- / Facebook Like -->
    the 2 ifs make it so it's ONLY in the first post, even though it's in postbit, and I also added a profile field that allows users to turn off these buttons (I also made a tweet button) if they don't like them so I don't have to listen to them complain.

    thanks guys!

  7. #142
    Senior Member
    Real Name
    Kristijan
    Join Date
    Oct 2005
    Location
    Zagreb
    Posts
    284
    Liked
    1 times
    i just added social floater to all my threads on forum, example: Kajkavizacija crti - on the left side


    i tried this in online games (v3arcade) but it showing non vbseo link arcade.php?gameidblabla

    any solution how to solve this

    2 Many Bugs

  8. #143
    Junior Member
    Real Name
    Olivier
    Join Date
    May 2006
    Posts
    11
    Liked
    0 times
    Quote Originally Posted by Mert Gökçeimam View Post
    Please add the following to your postbit or postbit_legacy template and make sure you replaced vbseo.com with your actual forum url

    Code:
    <!-- Facebook Like -->
    <iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.vbseo.com%2F{vb%3Araw+facebook_liked_url}&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;font=tahoma&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height:75px"></iframe>
    <!-- / Facebook Like -->
    Create a new plugin with the following content using

    Product : vBulletin
    Title : Facebook Liked vBSEO Integration
    Hook Location : postbit_display_start
    Execution order : 1

    PHP Code:
    $facebook_liked_url $_SERVER['VBSEO_URI'];
    vB_Template::preRegister('postbit',array('facebook_liked_url' => $facebook_liked_url));
    vB_Template::preRegister('postbit_legacy',array('facebook_liked_url' => $facebook_liked_url)); 
    txs, it works fine for me.. I have a question, I would like the url to be the first page of the thread

    What would be the change to to ?

    txs again

    cfages

  9. #144
    Junior Member
    Real Name
    Olivier
    Join Date
    May 2006
    Posts
    11
    Liked
    0 times
    any idea?

    Txs
    Chris

  10. #145
    Member
    Real Name
    Mian Humas
    Join Date
    Jun 2011
    Location
    Islamabad PK
    Posts
    31
    Liked
    0 times
    I have installed it .. its good .........

  11. #146
    Member
    Real Name
    Cadar Marius Florin
    Join Date
    Sep 2010
    Posts
    91
    Liked
    3 times
    I have a problem.

    Comunitatea Pariuri X you can see i have a fixed bottom bar on my forum, but when i hit like is adding some extra stuff there :

    Code:
    http://f.pariuri-x.ro/cazino/?fb_ref=.Tr54j9zBA1k.like&fb_source=profile_oneline
    Also at twitter.

    Any ideeas why ?

    The google +1 button is working great, in my google plus profile is showing me the right url.

    Edit: I removed addthis script and used custom script now is working.
    I like vbseo i use it on sports betting and whatafy.com

  12. #147
    Member
    Real Name
    Cadar Marius Florin
    Join Date
    Sep 2010
    Posts
    91
    Liked
    3 times
    Code:
    f.pariuri-x.ro/showthread.php?t=33331
    Just sawed this, why the default like button is giving that link ? How can be the vbseo link ?


    Ok i edited the code now the likes link is ok, but i have another problem, the number of likes from top is not the same with the ones from footer :

    Tipster Evolution - Regulament - Pagina 33

    look on top says 30 like and at bottom ZERO :(

    i have this :
    Code:
    <vb:if condition="$show['loadfbroot']">
    <span id="fb-root"></span>
    <script type="text/javascript" src="//connect.facebook.net/en_US/all.js#appId={vb:raw appid}&amp;xfbml=1"></script>
    </vb:if>
    <div id="addthis">
    <div id="addthis2"><g:plusone size="tall"></g:plusone></div>
    <div id="addthis2"><a href="https://twitter.com/share" class="twitter-share-button" data-count="vertical">Tweet</a></div>
    <div id="addthis2"><iframe src="//www.facebook.com/plugins/like.php?href={vb:raw href}&amp;send=false&amp;layout=box_count&amp;width=75&amp;show_faces=false&amp;action=like&amp;colorscheme=light&amp;font&amp;height=90&amp;appId=104259646302934" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:75px; height:65px;" allowTransparency="true"></iframe></div>
    </div>
    On footer is this :

    Code:
    <div id="addthis">
    <div id="addthis2"><g:plusone size="tall"></g:plusone></div>
    <div id="addthis2"><a href="https://twitter.com/share" class="twitter-share-button" data-count="vertical">Tweet</a></div>
    <div id="addthis2"><fb:like  href="{vb:raw href}" send="false" layout="box_count" width="70px" show_faces="false" font="arial"></fb:like></div>
    </div>
    
    <script type="text/javascript">
      window.___gcfg = {lang: 'ro'};
    
      (function() {
        var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true;
        po.src = 'https://apis.google.com/js/plusone.js';
        var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s);
      })();
    </script>
    
    <script type="text/javascript" src="//platform.twitter.com/widgets.js"></script>
    How can i make it show right ?
    I like vbseo i use it on sports betting and whatafy.com

  13. #148
    Junior Member
    Real Name
    LurkerBaba
    Join Date
    Sep 2011
    Posts
    4
    Liked
    0 times
    Quote Originally Posted by cfages View Post
    txs, it works fine for me.. I have a question, I would like the url to be the first page of the thread

    What would be the change to to ?

    txs again

    cfages
    *bump*

    I have the same issue. I need the vbseo url of the first page in the thread (like social bookmarks). What variable should be used for that ?

    edit: I'm using vbseo 3.6.0 on vb4

  14. #149
    vBSEO.com Webmaster Mert Gökçeimam's Avatar
    Real Name
    Lizard King
    Join Date
    Oct 2005
    Location
    Istanbul, Turkey, Turkey
    Posts
    23,100
    Liked
    622 times
    Blog Entries
    4
    Social Bookmarks use a more advanced method.
    Mert Gökçeimam / Crawlability Inc.

    vBSEO 3.6.0 Alpha Önizlemesi - Including Like Tree
    Unveiling the NEW vBSEO Sitemap Generator 3.0 - available NOW for vBSEO Customers!


    Twitter:@Depkac
    Personal Blog : Mert Gökçeimam

  15. #150
    Junior Member
    Real Name
    LurkerBaba
    Join Date
    Sep 2011
    Posts
    4
    Liked
    0 times
    Quote Originally Posted by Mert Gökçeimam View Post
    Social Bookmarks use a more advanced method.
    Is there anyway I can call that method ? Something like the plugin described in the first post ?

    I don't need http//socialbookmark.com/?variable=http://myforum.com/thread.html but only http://myforum.com/thread.html (without pagenumbers ofcourse)

Page 10 of 11 FirstFirst 1 2 3 4 5 6 7 8 9 10 11 LastLast

Similar Threads

  1. how can facebook like button to the left?
    By mediapac in forum General Discussion
    Replies: 3
    Last Post: 08-05-2011, 11:20 AM
  2. Facebook Like button removed with RR on?
    By insidedesign in forum Relevant Replacements
    Replies: 5
    Last Post: 10-06-2010, 08:07 PM
  3. vBulletin 4.x Facebook Like button vanishes
    By Neal in forum Troubleshooting
    Replies: 1
    Last Post: 09-23-2010, 01:02 AM
  4. Facebook-Button SHOWTHREAD
    By Cybeth in forum Deutsch
    Replies: 1
    Last Post: 08-14-2010, 01:19 PM
  5. Facebook Like Button
    By hcmagix in forum Deutsch
    Replies: 1
    Last Post: 05-18-2010, 12:26 PM

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •