vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 4.x Template Modifications (https://vborg.vbsupport.ru/forumdisplay.php?f=246)
-   -   Show Thread Enhancements - Google+1 / Facebook / Linkedin / Twitter Share Buttons (https://vborg.vbsupport.ru/showthread.php?t=264711)

dormopoco 07-05-2011 06:02 PM

Yes not work please update twitter button

DevOne5555 07-06-2011 11:21 PM

Just FYI, the problems with the Tweet count are a known issue on Twitter's end. AFAIK only vBulletin 4.x users are affected. Until Twitter comes out with a fix the best thing to do is disable the Tweet button.

Taggy 07-11-2011 08:19 AM

To speed up the Google plus one button you can change.

Code:

<script src=?http://apis.google.com/js/plusone.js? type=?text/javascript?></script>
To

Code:

<script src=?https://apis.google.com/js/plusone.js? type=?text/javascript?></script>
When the plus one button is pressed Google redirects the javascript from a http URL to a https URL and can add up to 5 seconds on a users load time. So by changing the above code Google will no longer have to make this redirect.

andresm000 08-04-2011 03:51 PM

This is great! So i got it to work and I have 2 questions:
Is there any way to make the bubbles only display when hovering over the social media button?

Also, any way to make these buttons available on all CMS articles and comments? Please see screenshot.
http://brighthotelier.com/images/misc2/socialmedia.png

birdie 08-06-2011 08:42 AM

I just posted a job in the request for paid work for someone who can install this mod in vB3.6:
https://vborg.vbsupport.ru/showthread.php?t=268067

MADMA 08-08-2011 11:04 PM

Quote:

Originally Posted by birdie (Post 2230009)
I just posted a job in the request for paid work for someone who can install this mod in vB3.6:
https://vborg.vbsupport.ru/showthread.php?t=268067

i can do this for you, it is easy to do

Cystomatic 09-07-2011 01:24 PM

Is there also a way to add this to the index page of my forum? So that it would show up in the header?

Thank you.

geggi69 11-16-2011 10:29 AM

Hi, I have an issue with the twitter button: the address pointing to thread is wrong

indeed it appears to be

http://www.termometropolitico.itshow...1234-my-thread

while it should be

http://www.termometropolitico.it/for...1234-my-thread

any hints?

Thanks so much

RyanIsra.net 12-05-2011 03:01 PM

Cool!
Just edited and works like a charm.

However, I prefer to put these buttons on the left, it's more eye-catching to users, IMO.

So, I changed the float to the left (in case anyone would do the same)

<div style="float: right; padding: 10px 0 8px 10px;">

to be:

<div style="float: left; padding: 10px 0 8px 10px;">

"Mark as Installed" : Done :D

RyanIsra.net 12-06-2011 05:57 AM

Btw, the script seem to be conflict with CONNECT button.

If I removed this script:

<script src="http://static.ak.fbcdn.net/connect.php/js/FB.Share" type="text/javascript"></script>

the facebook connect button appear but the share button gone (only text link)

Any suggestion?

duketxboy 12-06-2011 04:24 PM

the twitter name do we put our own twitter name because I don't have one so trying to figure it out

GameOverViper 12-08-2011 02:18 AM

I know this site that I'm going to mention isn't vbulletin, but is there a way for us to add the social buttons to the side of the forum and make it so they scroll with the page when you scroll down? See example.

Goomzee 01-31-2012 09:48 AM

Is this mod works with 3.8.2 version?

Alan_SP 02-01-2012 03:53 AM

Yes, it would work if you change code a bit (as vB4 has some things a bit different).

For example, you use only if instead vb:if

So you have this:

<if condition="$post[postcount] == 1">

In the end use only:

</if>

And of course, you need to search for different code in your postbit template. :) But all in all, this is it.

ClErK1991 02-07-2012 07:31 PM

i have a question for this i hot dont violate the terms of service of vBulletin, but there is some way, when i clic share on facebook that the message under the thread dont be ths:
Code:

'This is a discussion forum powered by vBulletin. To find out about vBulletin, go to http://www.vbulletin.com/ .'
there is some way to change it? if this question violate the termines of services please forget my question and erase

Toorak Times 02-08-2012 02:00 AM

Thanks for that winter sonata

weave 02-15-2012 11:29 PM

Quote:

Originally Posted by geggi69 (Post 2268494)
Hi, I have an issue with the twitter button: the address pointing to thread is wrong

indeed it appears to be

http://www.termometropolitico.itshow...1234-my-thread

while it should be

http://www.termometropolitico.it/for...1234-my-thread

any hints?

Thanks so much


I have this same issue and this is how I fixed it. I am still working on the fact that it is not incrementing tweet counts (yet). Though this seems to be a twitter bug https://dev.twitter.com/issues/48

The fix was adding this snippet "{vb:raw href}"

Code:

<a href="http://twitter.com/share" class="twitter-share-button" data-count="horizontal" data-via="YOUR_TWITTER_USERNAME" data-url="{vb:raw href}">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script>

ChiNa 07-15-2012 03:48 PM

Simply honored to join vBulletin, These amazing top modification and so easy can only be made by vBulletin professional and amazing users... Congurats to all of you who have joined vBulletin, and many many credits to all of them who have participated and showen appreciation .. and I am one of them, Appreciated and thank you

Fever905 05-09-2013 05:59 PM

Hi there-

Trying to edit the files, but the only place I'm seeing that code is in the install folder, vbulletin-style.xml

I'm using the latest 4.x release... are my templates stored in the database? Can anyone tell me? Or do I need to download the latest files from my webserver and edit it that way?

Thank you

gnrx 06-25-2013 10:05 PM

Hello.
I try to install for use only for google+1 but don't work.
Modify postbit_legacy, and not work.

I use vb 4.2.1

Any error, any message, but not work.

Any iddea?

Thanks.

Shoganai 07-03-2013 08:43 PM

Quote:

Originally Posted by RyanIsra.net (Post 2275097)
Btw, the script seem to be conflict with CONNECT button.

If I removed this script:

<script src="http://static.ak.fbcdn.net/connect.php/js/FB.Share" type="text/javascript"></script>

the facebook connect button appear but the share button gone (only text link)

Any suggestion?

Same here.

gnrx 07-03-2013 11:40 PM

How I can this code (google plus) for appears in the index of forum?

Thanks and regards!

negrowarez 03-16-2014 10:25 PM

You things this work with VB 5.1.0?

fxdigi-cash 08-26-2014 05:45 AM

because of the new updates at Facebook, the button no longer work. you need to update it to the latest code in order to work correctly...

Peter Cook 11-30-2014 04:53 PM

Works great!

I was wondering if it would work in the CMS section? If so where would you add the code?:)

ozzy47 11-30-2014 04:55 PM

No, this code would not work in the CMS sections. :(

Peter Cook 11-30-2014 05:36 PM

Well that's great :( I wonder if anyone has come across a mod that would do the same thing for CMS

Rapz 12-16-2014 04:20 PM

I tried this but only the like and tweet button show up on forumhome but no share button for the threads :(

john7911 12-17-2014 09:37 AM

Thank you ;)

john7911 03-03-2015 11:24 AM

Hi,
I have a problem with Facebook link :
https://vborg.vbsupport.ru/external/2015/03/18.jpg
Any solution?
Thank you ;)

darksidemon2 10-30-2015 11:28 AM

perfect.
Thank you very much greetings
work in vb 4.2.3


All times are GMT. The time now is 05:10 AM.

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.01384 seconds
  • Memory Usage 1,782KB
  • 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
  • (4)bbcode_code_printable
  • (3)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (31)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