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?
<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