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.

ssdevious 03-10-2012 11:41 AM

Quote:

Originally Posted by weave (Post 2299119)
Love this mod....hope you pick it back up and add more options into it....if you do, can you add paypal?

Tbh., PayPal ain't really a social media, it's a virtual payment gateway, plus there is already a mod, which includes a PayPal donation.

Anyhow, I'd wonder, how would be the most effective way to edit the "My Social Networking" headline area. In normal profile, it looks all right, but in the postbit? It is just way too much intrusive for my taste, e.g. especially the bold font.

Best Regards,
~tEh'P?r4d0x

Anopheles 03-12-2012 03:30 PM

Hello,
thanx 4 the AddOn!
I've done the steps 1 - 4 on the first Page, my numbers are right.
Wenn i fill out my Profile the following error occurs:

German:
Quote:

Die Geodaten konnten nicht ermittelt werden, bitte wenden Sie sich an den Administrator.
English:
Quote:

The geo-datas could not be determined, please contact the administrator.
What's wrong?

Thanx

ssdevious 03-13-2012 04:05 PM

Quote:

Originally Posted by Anopheles (Post 2308873)
Hello,
thanx 4 the AddOn!
I've done the steps 1 - 4 on the first Page, my numbers are right.
Wenn i fill out my Profile the following error occurs:

German:


English:


What's wrong?

Thanx

Well,

step no. 1 - 2 ain't really affecting the functionality of this mod, weird, since the coder forgot to mention that.

Step no. 1 is there to just explain you to create as many "User Profile Fields" as you need. This mod supports 10 social media, so that's why the programmer tells us to create 10 user fields, but that's fairly not necessary, you can go by just with one.

Step no. 2 is there to just upload some icons, if you skip it, mod will still work, but there will be most likely [x] instead of those icons.

Step no. 3 is the most crucial one, since you're uploading the .XML, which is basically the core element for this mod.

What the creator also forgot to mention was that when you're in options for this mod, you need to paste the "User Profile Fields" ID to this mod or else - use the ID for the particular user profile field, so the mod would know, which URL it should link to after click.

Quote:

Xfire Single-Line Text Box - Editable - field8 - [Edit] [Delete]
That's something, you will see in your ACP. Now, go back to the mod options and write "8" to your desired profile field. It should work.

The error message is weird, I've never encountered with it, but for me, it looks like you just misplaced some profile field IDs.

Also, what vBulletin version you're running?

Hope this help,
~tEh'P?r4d0x

weave 05-02-2012 05:20 PM

Upgraded my test board to 4.1.12 and so far this mod seems to work 100% with no issues yet found!

420 05-08-2012 07:19 PM

Will this add-on automatically post threads from a specific forum, to our Facebook page, like an RSS feed?

Thanks

plasticsurgery 05-27-2012 03:28 AM

Are you aware the 16x16 images are about 50kb EACH? No joke, take a look for yourself.

This is really bad for SEO. I am re-saving the images in Photoshop. No reason for a png file of 16x16 to be more than 1kb.

stalkingdatoast 05-27-2012 05:25 AM

PLease help i did the installation and when i add for example youtube it redirects incorrect

http://www.strictlybusinessgaming.co...er/stalkingqba

and because when i click on the icons it takes me there^^ i get the 404 page.

LouiseWilson 06-05-2012 08:18 AM

Quote:

Originally Posted by stalkingdatoast (Post 2333387)
PLease help i did the installation and when i add for example youtube it redirects incorrect

http://www.strictlybusinessgaming.co...er/stalkingqba

and because when i click on the icons it takes me there^^ i get the 404 page.

Ditto I'm using version 4.2.0
Well it seems another mod not woring correctly, I have fixed this by going to either

postbit_social
postbit_social1

depending on what View you use in the options
and edit the following

Example
<a target ="blank" href="{vb:raw social.twitter}">

to

<a target ="blank" href="http://twitter.com/{vb:raw post.field10}">

datoneer 07-22-2012 09:32 PM

Great mod!

Superorb 09-29-2012 04:49 AM

On my profile pages the user's name isn't inserted in the Title/Alt tag. I think the problem is the variable it calls is post.username when it's the profile and not the posts page.

alt="Add {vb:raw post.username} on Facebook"

It should be {vb:raw prepared.musername}.

jerde 10-29-2012 02:21 AM

Yes, I also have 4.2 installed and having issues with links. Used Louise' fix here to resolve... https://vborg.vbsupport.ru/showpost....&postcount=138

jerde 10-29-2012 02:45 AM

Quote:

Originally Posted by Superorb (Post 2369420)
On my profile pages the user's name isn't inserted in the Title/Alt tag. I think the problem is the variable it calls is post.username when it's the profile and not the posts page.

alt="Add {vb:raw post.username} on Facebook"

It should be {vb:raw prepared.musername}.

You added the letter "m" on "username" by accident. It should be...

{vb:raw prepared.username}

Superorb 10-29-2012 02:57 AM

Quote:

Originally Posted by jerde (Post 2376730)
You added the letter "m" on "username" by accident. It should be...

{vb:raw prepared.username}

Yeah I know, I fixed that earlier. Thanks for looking out!

Palmcone 10-30-2012 04:01 PM

For some reason, there is a <br> being entered under one of my social icons. If I add another social network to my profile then it adds the icon on the top part of the list. Why is the YouTube button on a different line? More importantly, how do I correct this?

https://vborg.vbsupport.ru/

Superorb 10-30-2012 05:58 PM

Quote:

Originally Posted by Palmcone (Post 2377066)
For some reason, there is a <br> being entered under one of my social icons. If I add another social network to my profile then it adds the icon on the top part of the list. Why is the YouTube button on a different line? More importantly, how do I correct this?

https://vborg.vbsupport.ru/

You need to edit the templates that this plugin installs and take out the <br /> that it adds.

jerde 10-30-2012 08:30 PM

Quote:

Originally Posted by Palmcone (Post 2377066)
For some reason, there is a <br> being entered under one of my social icons. If I add another social network to my profile then it adds the icon on the top part of the list. Why is the YouTube button on a different line? More importantly, how do I correct this?

http://www.z-e-r-t.com/wp-content/up...ialButtons.jpg

You need to find the "memberinfo_block_social", "postbit_social", "postbit_social1" templates, and then scroll down about half way and delete this... </br>

Then all your icons will be in one straight line.

Palmcone 10-30-2012 09:10 PM

Quote:

Originally Posted by jerde (Post 2377119)
You need to find the "memberinfo_block_social", "postbit_social", "postbit_social1" templates, and then scroll down about half way and delete this... </br>

Then all your icons will be in one straight line.


I edited the xml file to remove the <br> and re-uploaded it. Problem solved.

Thanks for the suggestions.

tankkiller 12-05-2012 10:47 PM

Quote:

Originally Posted by LouiseWilson (Post 2336664)
Ditto I'm using version 4.2.0
Well it seems another mod not woring correctly, I have fixed this by going to either

postbit_social
postbit_social1

depending on what View you use in the options
and edit the following

Example
<a target ="blank" href="{vb:raw social.twitter}">

to

<a target ="blank" href="http://twitter.com/{vb:raw post.field10}">

Can someone confirm this still works with vB4.2.0 pl3? I experienced this same issue listed above, with the url redirected to the installed website with the social media username added onto the end ex: http://mywebsite.com/my FB_username.

I did the above fix but it didn't work, the mod no longer displays with that tweak.

After several reattempts of double checking my edits, now the plugin doesn't work at all. Even after re-uploading the original file. With either the original xml or the one with the tweaks, when trying to edit the options in ACP/Options/ none of the changes are saved, it just refreshes the page and doesn't save my entered data.

thenags 01-15-2013 01:23 PM

Installed it and it's working great.

Any plans to add Instagram?

murrtex 01-26-2013 03:33 PM

1 Attachment(s)
Quote:

Originally Posted by thenags (Post 2397048)
Installed it and it's working great.

Any plans to add Instagram?

Here is;
Pinterest, Soundcloud, Instagram

thenags 01-26-2013 05:43 PM

Quote:

Originally Posted by murrtex (Post 2399672)
Here is;
Pinterest, Soundcloud, Instagram

You're the man. Thanks!

Just had to edit the 24x24 images to make 'em 16x16

thenags 01-26-2013 06:00 PM

I see you also fixed it so we only need to enter the usernames instead of the full links. Just like it should have been to begin with.

Thanks again.

BlessedFWI 01-26-2013 11:58 PM

Quote:

Originally Posted by murrtex (Post 2399672)
Here is;
Pinterest, Soundcloud, Instagram

Thanks so much for the icons and the xml. However, in my postbit I can't see the Pinterest and SoundCloud icons (Screenshot #1) but I can on my profile (Screenshot #2)...any ideas?

Thanks so much!

Screenshot #1 (Postbit):

https://vborg.vbsupport.ru/external/2013/01/2.jpg


Screenshot #2 (Profile):

https://vborg.vbsupport.ru/external/2013/01/3.jpg

henrique araujo 01-28-2013 02:12 PM

Quote:

Originally Posted by tankkiller (Post 2388786)
Can someone confirm this still works with vB4.2.0 pl3? I experienced this same issue listed above, with the url redirected to the installed website with the social media username added onto the end ex: http://mywebsite.com/my FB_username.

I did the above fix but it didn't work, the mod no longer displays with that tweak.

After several reattempts of double checking my edits, now the plugin doesn't work at all. Even after re-uploading the original file. With either the original xml or the one with the tweaks, when trying to edit the options in ACP/Options/ none of the changes are saved, it just refreshes the page and doesn't save my entered data.

here too...
help us

BlessedFWI 01-31-2013 09:54 PM

Quote:

Originally Posted by BlessedFWI (Post 2399757)
Thanks so much for the icons and the xml. However, in my postbit I can't see the Pinterest and SoundCloud icons (Screenshot #1) but I can on my profile (Screenshot #2)...any ideas?

Thanks so much!

Screenshot #1 (Postbit):

https://vborg.vbsupport.ru/external/2013/01/2.jpg


Screenshot #2 (Profile):

https://vborg.vbsupport.ru/external/2013/01/3.jpg

Any help would be much appreciated.

Thanks!

john7911 02-13-2013 01:48 PM

Thank you :)

fwulfers 02-22-2013 03:38 PM

Fantastic mod, works great on 4.2.0 pl3. I did have to remove the 3 <br /> entries from the XML file and shrink down the size of the icons before uploading but all is good now.

Example: http://saabworld.net/f26/social-netw...postbit-27930/

Majest 02-23-2013 12:23 AM

Hello,

This is a neat mod, any chance of an update and adding in DeviantART and Steam? Perhaps also an option that could be customization so my members can add in such things as gamer ID's etc.

Thanks for releasing this.

Regards,
- Majestic

MacroPhotoPro 04-03-2013 09:25 AM

Is there a way to control how many of those little icons get displayed?

For example, I only want to use FB, Twitter, Linked In & You Tube, and so I don't need to display all of those other links.

Can each user determine how many of those icons get used/displayed?

Thanks,

Jack

fwulfers 04-03-2013 11:26 AM

You can choose in ACP which service you want to enable for everyone. If the user leaves any of the fields blank (default) in their user settings, the icon will not be displayed in their posts.


All times are GMT. The time now is 02:20 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.01907 seconds
  • Memory Usage 1,872KB
  • 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
  • (21)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (3)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)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