Hi, twitter button is not coming up though I have done checked all that all points discussed in the the above button are fulfilled.
My code is as follows:-

Follow @shagun008

be sure that the link is

js.src=“http://platform.twitter.com/widgets.js”;

i missed the ‘g’ in ‘widgets’

Hi, why is the twitter count not rendering on http://buyregalo.com

i am trying to count 2 sites but i dont know how to get it done. e.g www.xyz.com and abc.com/food goes to the same page. i want to count both mentions on twitter instead of counting them separately.

thanks

ok ok very well

The following solution worked for me:

Change:
js.src=“//platform.twitter.com/widgets.js

to:
js.src=“http://platform.twitter.com/widgets.js

Hey, i also got the same problem twitter button is not coming up though I have done checked all that all points discussed in the the above button are fulfilled.
My code is as follows:-

!function(d,s,id)
{var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?‘http’:‘https’;if(!d.getElementById(id))
{js=d.createElement(s);js.id=id;
js.src=p+‘://platform.twitter.com/widgets.js’;fjs.parentNode.insertBefore(js,fjs);}}
(document, ‘script’, ‘twitter-wjs’);

Been having this same problem but i’ve found another cause of the problem. I copy and pasted the url for the widget and a message came up saying it was blocked by an extension. I then tried it when in was incognito in chrome with no extensions enabled and no problem. Hope this helps.

I’ll try find out which extension is blocking the link.

In my case it’s caused by the AVG do not track extension.

I have a problem .I am working on a project in which it lists blogs of middle east and the latest post with respect to those blogs (http://developersatwork.com/projects/g4/theblogslounge/latest-post)
If yo see the twit links and click on them you will see .It is showing only the page title not the post title which I want .For example, its showing Theblogslounge:Latest post (which is the page title but , if I tweet the first post , it should show,Baked Eggs in Tomatoes Recipe)Can any body help…Its very urgent.Thanks in advance

Easy fix for this… - YouTube

@TripDaRipper

Still not working. Any other suggestions? I’ve been dealing with this for two months and no one has a solution. Moved the script to the head. Didn’t work. Messed with the http, https. Didn’t work. Disabled all extensions. Didn’t work. It works fine in IE, but chrome and iOS nothing.

@TripDaRipper

Still not working. Any other suggestions? I’ve been dealing with this for two months and no one has a solution. Moved the script to the head. Didn’t work. Messed with the http, https. Didn’t work. Disabled all extensions. Didn’t work. It works fine in IE, but chrome and iOS nothing.

Hi. You’re replying to a two year old ticket, so it’s very unlikely that any problem you’re having today will relate to a different cause. Please check the FAQ for advice on posting bug reports with enough information for us to investigate:

[faq:25874]

Ben

My button image is not working on my page either.

Tweet

Hey guys,

this may sound ridiculous to some of you but if your Twitter buttons show up just as plain text, make sure no content is blocked - my Ghostery plugin blocked the button which cost me a few minutes to figure out.

For what it’s worth – I ended up making single quotes { ’ } into double-quotes { " }. Made the text into a button.

can anyone please give me code for website twitter login in javascript for html page…

Twitter share button disapears on www.domain.net web sites. Any ideas why?

Hello, everybody watching this thread :

The cause for this happening is very simple, in my opinion. The syntax is malformed, in the meaning bellow:

Usually when defining styles (either internal – inside your index.html file, or external – by using a mystyles.css file stored next to your index.html file) you must define what are the classes which you are later invoking in your html source code.

Obviously, somewhere inside the server where is hosted www.twitter.com itself, it is defined this class selector

class=“twitter-follow-button”

which is the real root of the troubles. However, we simply can’t define it inside our server (because we usually might receive its description from twitter itself – or importing it using the script made available to us by twitter. Otherwise we can’t do it, because we don’t know exactly this class content. If it would be a simple image (as a banner), than no class code would be necessary, but simply to download it and create a link, etc…

I wonder why during all these 3 years long, nobody at twitter did not figured out this simple issue (it is something from first lessons about using classes and selectors) – one can read this very good source here:

Probably it has nothing to do with the missing http element (mentioned above by some of you), or any blocking software or extensions. Your browser simply doesn’t know if it just has to ignore that class (invoked in the html code copy-pasted from twitter page), or to enter into an infinite loophole still trying to search inside your css file the parameters for that element, both options being quite damaging for the aspect and the loading speed of your website.

Even worst is the fact that this affects also the absolute positioning of such a twitter button, should you want to place it above a static image on top of your page, because you can’t define 2 classes which to apply to the same element (the nested ones could override the external ones)

For example, if you want to create a floating element, and put in .css file the following code

.floating { position: absolute; left: 1050px; top: 18px; }

and then inside the index.html this code

,

so that the small blue bird image would stay nicely on top in the right side of the webpage, then certainly, it is risky to change that part

into this

Follow @some-user

In most cases the result is unexpected, so you might get lucky, or not.

Point is that you couldn’t know what exactly happens in the browsers of your visitors and if they can be driven swiftly to the user experience intended for them by you as a webmaster.

Having problems with this simple button is for twitter as not having available a “Pay Now” button inside of a e-commerce website when you want to conclude a purchase.

I hope that being identified the problem the developers from twitter could quickly find a workaround for this situation, in the benefit of all community of their users. I am very sure they can continue to add great features to their platform, as always. Thank you.