[Help Please]Creating this sort of share bar?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • GamerUnguided
    New Member
    • Dec 2012
    • 8
    • 4.2.X

    [Help Please]Creating this sort of share bar?

    So today i was on another vbulletin forum when i saw this sort of share bar



    now im not sure how to do this and i was wondering wether anybody here could point me in the right direction?
  • TLMD
    Senior Member
    • Sep 2012
    • 1766
    • 5.6.X

    #2
    This requires and addon/plugin. You can look at www.vbulletin.org, if they have such a thing for vB5. If not, this would require custom coding (= someone who creates such an addon/plugin for you).

    Comment

    • GamerUnguided
      New Member
      • Dec 2012
      • 8
      • 4.2.X

      #3
      Ok thanks for the heads up

      Comment

      • glennrocksvb
        Former vBulletin Developer
        • Mar 2011
        • 4021
        • 5.7.X

        #4
        That is an AddThis widget. You can create an HTML module via SiteBuilder on the target page and paste the required HTML markup and Javascript.

        Flag Icon Postbit Insert GIPHY Impersonate User BETTER INITIALS AVATAR Better Name Card Quote Selected Text Bookmark Posts Post Footer Translate Stop Links in Posts +MORE!

        Comment

        • glennrocksvb
          Former vBulletin Developer
          • Mar 2011
          • 4021
          • 5.7.X

          #5
          Originally posted by Glenn Vergara
          That is an AddThis widget. You can create an HTML module via SiteBuilder on the target page and paste the required HTML markup and Javascript.
          If you are using Smart Layers version of the AddThis widget like what you posted, then the HTML module you will create will be empty because Smart Layers has fixed position (left or right). You can hide the empty module via Javascript:

          Code:
          <!-- AddThis Smart Layers BEGIN -->
          <!-- Go to http://www.addthis.com/get/smart-layers to customize -->
          <script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=yourPubIdHere"></script>
          <script type="text/javascript">
            addthis.layers({
              'theme' : 'transparent',
              'share' : {
                'position' : 'left',
                'numPreferredServices' : 5
              },  
              'whatsnext' : {},  
              'recommended' : {}
            });
            
          [COLOR=#008000]  //Hide this HTML Module
            (function(){
              var scriptTag = document.getElementsByTagName('script');
              scriptTag = scriptTag[scriptTag.length - 1];
              scriptTag.parentNode.parentNode.style.display = 'none';  
            })();[/COLOR]
          </script>
          <!-- AddThis Smart Layers END -->

          Flag Icon Postbit Insert GIPHY Impersonate User BETTER INITIALS AVATAR Better Name Card Quote Selected Text Bookmark Posts Post Footer Translate Stop Links in Posts +MORE!

          Comment

          • GamerUnguided
            New Member
            • Dec 2012
            • 8
            • 4.2.X

            #6
            Originally posted by Glenn Vergara
            That is an AddThis widget. You can create an HTML module via SiteBuilder on the target page and paste the required HTML markup and Javascript.
            oooh thanks for the heads up :P thank you

            Comment

            Related Topics

            Collapse

            Working...