I do not want to ask about something that is most likely about my mistake, but I'm at a dead end. Firstly, I definitely NEVER approach the actual developer or website designer. I volunteered to put together a new website for a nonprofit volunteer, as I knew more than anyone else (a scary warning sign). Using wordpress (no plugins for facebook buttons).
It was planned to live this week, but I left to take lunch, returned and literally all the Facebook Like and Apples buttons just disappeared (they worked fine and continued to work for about two weeks). When I check the code using Chrome Web Developer, I see that the code is still there, but inactive.
A good example is on the home page: www.thecarecommunities.com. At the bottom of the page there should be a “Box” between the sponsor’s logos and the twitter feed. Another place in messages, such as here: http://thecarecommunities.com/gala-press-release/ There should be a Facebook Like button, in front of the twitter button and Like Box on the right above the twitter channel.
I'm the only one who has access to files, I double-checked the script code in the header, the code to put the buttons where they should be, and everything is still as it was. If anyone could help find the mistake, I would really appreciate it.
PS. the current website is www.thecarecommunities.org, so most links are already set up to go to the .org domain, so many go up to 404 pages right now.
SDK script in title
add_action('headway_body_open', 'fb_sdk_script'); function fb_sdk_script () { ?> <div> <div id="fb-root"></div> <script>(function(d, s, id) { var js, fjs = d.getElementsByTagName(s)[0]; if (d.getElementById(id)) return; js = d.createElement(s); js.id = id; js.src = "//connect.facebook.net/en_US/all.js#xfbml=1"; fjs.parentNode.insertBefore(js, fjs); }(document, 'script', 'facebook-jssdk'));</script> </div> <?
Like Box on the front page of www.thecarecommunities.com
<div class="fb-like-box" data-href="http://www.facebook.com/thecarecommunities"data-width="406" data-height="520" data-show-faces="true" data-stream="false"data-header="true"></div>
Like a button that should be at the top of the home page using the twitter button
<div class="fb-like" data-href="http://thecarecommunities.org" data-send="false" data-layout="button_count" data-width="60" data-show-faces="false"></div>
source share