vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 4.x Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=245)
-   -   Show Thread Enhancements - Social Networking in Posbit AND Profile (Twitter, Facebook, Google+, Linkedin, +more) (https://vborg.vbsupport.ru/showthread.php?t=267019)

tpearl5 01-24-2012 08:03 PM

Quote:

Originally Posted by ceho (Post 2291519)

I would like to have it back like it was before but I don't get it. Can anybody help me and tell me how to get it back into the position right above the IM icons and below the blog bit again?

Thanks a lot!

Try changing the execution order of the plugin for the postbit

ceho 01-24-2012 08:44 PM

Yay, that was it. Easy :). Thank you very much!!

denman75 01-25-2012 07:49 AM

Quote:

Originally Posted by yjmalmsteen (Post 2289148)
How can i change "My Social Networks" title's language?
Amazing mod btw
Thanks

want to know it also ,thank you

thenamesgould 01-28-2012 01:11 AM

These alterations so that you only have to enter the username of the various services seem to work fine for me. First of all in memberinfo_block_social:

Code:

<div class="friends_mini friends block">
  <h5 class="blocksubhead userprof_blocksubhead smaller ">My Social Networking
  <vb:if condition="$prepared['myprofile']">
                <a class="textcontrol imagecontrol" href="profile.php?{vb:raw session.sessionurl}do=editprofile"><img src="{vb:stylevar imgdir_button}/edit_40b.png" alt="{vb:rawphrase edit}" /></a>
                </vb:if></h5>
    <div class="blockbody userprof_content userprof_content_border">
      <div class="blockrow member_blockrow">
      <div align="center">
    <vb:if condition="$social['twitter']">
<a target ="blank" href="http://www.twitter.com/{vb:raw social.twitter}"><img src="images/postbit_social/twitter.png" onmouseover="this.src='images/postbit_social/twitter_a.png'" onmouseout="this.src='images/postbit_social/twitter.png'" alt="Follow {vb:raw post.username} on Twitter" /></a>
        </vb:if>
   
        <vb:if condition="$social['facebook']">
<a target ="blank" href="http://www.facebook.com/{vb:raw social.facebook}"><img src="images/postbit_social/facebook.png" onmouseover="this.src='images/postbit_social/facebook_a.png'" onmouseout="this.src='images/postbit_social/facebook.png'" alt="Add {vb:raw post.username} on Facebook" /></a>       
        </vb:if>
   
        <vb:if condition="$social['google']">
<a target ="blank" href="http://plus.google.com/{vb:raw social.google}"><img src="images/postbit_social/google.png" onmouseover="this.src='images/postbit_social/google_a.png'" onmouseout="this.src='images/postbit_social/google.png'" alt="Add {vb:raw post.username} on Google+" /></a>
</vb:if>

        <vb:if condition="$social['bebo']">
<a target ="blank" href="http://www.bebo.com/{vb:raw social.bebo}"><img src="images/postbit_social/bebo.png" onmouseover="this.src='images/postbit_social/bebo_a.png'" onmouseout="this.src='images/postbit_social/bebo.png'" alt="Add {vb:raw post.username} on Bebo" /></a>
        </vb:if>
   
    <vb:if condition="$social['myspace']">
<a target ="blank" href="http://www.myspace.com/{vb:raw social.myspace}"><img src="images/postbit_social/myspace.png" onmouseover="this.src='images/postbit_social/myspace_a.png'" onmouseout="this.src='images/postbit_social/myspace.png'" alt="Add {vb:raw post.username} on MySpace" /></a>
        </vb:if>
    <vb:if condition="$social['linkedin']">
<a target ="blank" href="http://www.linkedin.com/in/{vb:raw social.linkedin}"><img src="images/postbit_social/linkedin.png" onmouseover="this.src='images/postbit_social/linkedin_a.png'" onmouseout="this.src='images/postbit_social/linkedin.png'" alt="Add {vb:raw post.username} on Linkedin" /></a>
        </vb:if>
   
    <vb:if condition="$social['tumblr']">
<a target ="blank" href="http://{vb:raw social.tumblr}.tumblr.com"><img src="images/postbit_social/tumblr.png" onmouseover="this.src='images/postbit_social/tumblr_a.png'" onmouseout="this.src='images/postbit_social/tumblr.png'" alt="Follow {vb:raw post.username} on Tumblr" /></a>
        </vb:if>
   
    <vb:if condition="$social['flickr']">
<a target ="blank" href="http://www.flickr.com/{vb:raw social.flickr}"><img src="images/postbit_social/flickr.png" onmouseover="this.src='images/postbit_social/flickr_a.png'" onmouseout="this.src='images/postbit_social/flickr.png'" alt="Follow {vb:raw post.username} on Flickr" /></a>
        </vb:if>

    <vb:if condition="$social['youtube']">
<a target ="blank" href="http://www.youtube.com/user/{vb:raw social.youtube}"><img src="images/postbit_social/youtube.png" onmouseover="this.src='images/postbit_social/youtube_a.png'" onmouseout="this.src='images/postbit_social/youtube.png'" alt="Visit {vb:raw post.username}'s YouTube Channel" /></a>
        </vb:if>   
   
      <vb:if condition="$social['vimeo']">
<a target ="blank" href="http://www.vimeo.com/{vb:raw social.vimeo}"><img src="images/postbit_social/vimeo.png" onmouseover="this.src='images/postbit_social/vimeo_a.png'" onmouseout="this.src='images/postbit_social/vimeo.png'" alt="Visit {vb:raw post.username}'s Vimeo Channel" /></a>
        </vb:if>
      </div>
    </div>                 
 </div>
</div>
<div class="underblock"></div>

And in postbit_social1, this:

Code:

  <vb:if condition="$social['twitter']">
<a target ="blank" href="http://www.twitter.com/{vb:raw social.twitter}"><img src="images/postbit_social/twitter.png" onmouseover="this.src='images/postbit_social/twitter_a.png'" onmouseout="this.src='images/postbit_social/twitter.png'" alt="Follow {vb:raw post.username} on Twitter" /></a>
        </vb:if>
   
        <vb:if condition="$social['facebook']">
<a target ="blank" href="http://www.facebook.com/{vb:raw social.facebook}"><img src="images/postbit_social/facebook.png" onmouseover="this.src='images/postbit_social/facebook_a.png'" onmouseout="this.src='images/postbit_social/facebook.png'" alt="Add {vb:raw post.username} on Facebook" /></a>       
        </vb:if>
   
        <vb:if condition="$social['google']">
<a target ="blank" href="http://plus.google.com/{vb:raw social.google}"><img src="images/postbit_social/google.png" onmouseover="this.src='images/postbit_social/google_a.png'" onmouseout="this.src='images/postbit_social/google.png'" alt="Add {vb:raw post.username} on Google+" /></a>
</vb:if>

        <vb:if condition="$social['bebo']">
<a target ="blank" href="http://www.bebo.com/{vb:raw social.bebo}"><img src="images/postbit_social/bebo.png" onmouseover="this.src='images/postbit_social/bebo_a.png'" onmouseout="this.src='images/postbit_social/bebo.png'" alt="Add {vb:raw post.username} on Bebo" /></a>
        </vb:if>
   
    <vb:if condition="$social['myspace']">
<a target ="blank" href="http://www.myspace.com/{vb:raw social.myspace}"><img src="images/postbit_social/myspace.png" onmouseover="this.src='images/postbit_social/myspace_a.png'" onmouseout="this.src='images/postbit_social/myspace.png'" alt="Add {vb:raw post.username} on MySpace" /></a>
        </vb:if>
    <vb:if condition="$social['linkedin']">
<a target ="blank" href="http://www.linkedin.com/in/{vb:raw social.linkedin}"><img src="images/postbit_social/linkedin.png" onmouseover="this.src='images/postbit_social/linkedin_a.png'" onmouseout="this.src='images/postbit_social/linkedin.png'" alt="Add {vb:raw post.username} on Linkedin" /></a>
        </vb:if>
   
    <vb:if condition="$social['tumblr']">
<a target ="blank" href="http://{vb:raw social.tumblr}.tumblr.com"><img src="images/postbit_social/tumblr.png" onmouseover="this.src='images/postbit_social/tumblr_a.png'" onmouseout="this.src='images/postbit_social/tumblr.png'" alt="Follow {vb:raw post.username} on Tumblr" /></a>
        </vb:if>
   
    <vb:if condition="$social['flickr']">
<a target ="blank" href="http://www.flickr.com/{vb:raw social.flickr}"><img src="images/postbit_social/flickr.png" onmouseover="this.src='images/postbit_social/flickr_a.png'" onmouseout="this.src='images/postbit_social/flickr.png'" alt="Follow {vb:raw post.username} on Flickr" /></a>
        </vb:if>

    <vb:if condition="$social['youtube']">
<a target ="blank" href="http://www.youtube.com/user/{vb:raw social.youtube}"><img src="images/postbit_social/youtube.png" onmouseover="this.src='images/postbit_social/youtube_a.png'" onmouseout="this.src='images/postbit_social/youtube.png'" alt="Visit {vb:raw post.username}'s YouTube Channel" /></a>
        </vb:if>   
   
      <vb:if condition="$social['vimeo']">
<a target ="blank" href="http://www.vimeo.com/{vb:raw social.vimeo}"><img src="images/postbit_social/vimeo.png" onmouseover="this.src='images/postbit_social/vimeo_a.png'" onmouseout="this.src='images/postbit_social/vimeo.png'" alt="Visit {vb:raw post.username}'s Vimeo Channel" /></a>
        </vb:if>

I then edited the User Profile fields to read
Enter your Twitter username (excluding the @).
Enter your Facebook username.

etc ...

weave 02-13-2012 01:14 AM

Love this mod....hope you pick it back up and add more options into it....if you do, can you add paypal?

tpearl5 02-17-2012 01:23 AM

Quote:

Originally Posted by tpearl5 (Post 2290535)
FYI, for anyone wanting to use this to add author tags via Google+ here's how to do it:
[/url]

btw, I got this working great for my sites...

https://www.google.com/search?q=droi...l+phone+forums

Dwarden 02-21-2012 11:11 AM

installed with some modification for the http plus added STEAM, Raptr, Xfire :)

neat, nice, works with 4.1.10

comunidadmh 02-28-2012 01:42 AM

Hello, how are you guys :)?

I do a wonder.

Install the program, but I realized that if I use the factory style that comes with vbulletin going well, but if you use my personal style, I do shows.

Someone could help me?

GeorgeB85 03-03-2012 11:53 PM

If I enable the block to show in postbit, when you click on any of the icons, it pops up a new tab with a url of http://www.http.com// and then continues on with the correct url.

What is causing the http://www.http.com// to happen and how can I make it stop?

skol 03-04-2012 12:08 AM

Quote:

Originally Posted by GeorgeB85 (Post 2305903)
If I enable the block to show in postbit, when you click on any of the icons, it pops up a new tab with a url of http://www.http.com// and then continues on with the correct url.

What is causing the http://www.http.com// to happen and how can I make it stop?

Well my postbit is totally customized,and adding this mod it just fell straight in.//usually you can only change what the author allows you to do..A little like ioncube encryption but you dont need a rule for that.


All times are GMT. The time now is 04:57 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01373 seconds
  • Memory Usage 1,783KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (2)bbcode_code_printable
  • (4)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete