Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Question: Why is the html after the facebook like button code not displayed in the browser window in this smarty template? It is displayed if I move the facebook like button code to the bottom of the template.

I am familiarizing myself with the facebook api using a combination of the Javascript SDK, PHP SDK, and Smarty templating.

    $smarty->assign('likebutton', '<fb:like send="true" width="450" show_faces="true" />');

I have the following dysfunctional Smarty template:

    <!DOCTYPE html>
    <html lang="en" xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://ogp.me/ns/fb#">
    <head>
        <meta charset="utf-8" />
        <title>FaceBook Test</title>
        <meta name="generator" content="BBEdit 10.5" />
    </head>
    <body>
    <div id="fb-root"></div>
    <script src="fbjssdk_connect.js"></script>
    {$likebutton}
    <div>
    Hello, {$name}<BR>
    Post ID: {$postID}<BR>
    {if isset($login) }
       Logging: <a href="{$loggin}">login</a><BR>
    {elseif isset($logout) }
       Logging: <a href="{$logout}">logout</a><BR>
    {/if}
    Access Token: {$accessToken}<BR>
    Response: {$response}<BR>
    </div>

    </body>
    </html>

The template and Facebook api function exactly as expected except that any text below the Facebook like button code is not displayed in the browser. The html rendered from the template is in the source view in the browser.

If I move the Facebook like button code to the bottom of the template, the text appears as expected, and the like button is displayed as expected.

I have the following functional Smarty template:

    <!DOCTYPE html>
    <html lang="en" xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://ogp.me/ns/fb#">
    <head>
        <meta charset="utf-8" />
        <title>FaceBook Test</title>
        <meta name="generator" content="BBEdit 10.5" />
    </head>
    <body>
    <div id="fb-root"></div>
    <script src="fbjssdk_connect.js"></script>

    <div>
    Hello, {$name}<BR>
    Post ID: {$postID}<BR>
    {if isset($login) }
       Logging: <a href="{$loggin}">login</a><BR>
    {elseif isset($logout) }
       Logging: <a href="{$logout}">logout</a><BR>
    {/if}
    Access Token: {$accessToken}<BR>
    Response: {$response}<BR>
    </div>
    {$likebutton}

    </body>
    </html>

Does anybody have an explanation for this newbie?

share|improve this question
You are using <fb:like ... />, a self-closing XML tag - maybe the browser has problems with that. Try using the form <fb:like ...></fb:like> instead. – CBroe Feb 6 at 13:42

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.