(6 Feb, 2012, 3:27 pm)Sama34 escribió: Creo que confundiste la plantilla con el index.php
Ve a tu ACP, plantillas, Index 'Plantillas, index, que hay dentro? Captura por favor.
Código:
<html>
<head>
<title>{$mybb->settings['bbname']}</title>
{$headerinclude}
<script type="text/javascript">
<!--
lang.no_new_posts = "{$lang->no_new_posts}";
lang.click_mark_read = "{$lang->click_mark_read}";
// -->
</script>
</head>
<body>
{$header}
<div style="width:500px;border-radius:5px;background:#f5f5f5;border:1px dotted #ccc;margin:0 auto;padding:10px;margin-bottom:10px;text-shadow:1px 1px #fff;">
<?php
$page_id = "323935347624043";
$xml = @simplexml_load_file("http://api.facebook.com/restserver.php?method=facebook.fql.query&query=SELECT%20fan_count%20FROM%20page%20WHERE%20page_id=".$page_id."") or die ("a lot");
$fb_fans = $xml->page->fan_count;
?>
<center><h2><a href="http://facebook.com/GamerTopia" target="_blank">Gamertopía ya tiene <?php echo $fb_fans; ?> fans en Facebook</a></h2></center>
</div>
<div style="width:500px;border-radius:5px;background:#f5f5f5;border:1px dotted #ccc;margin:0 auto;padding:10px;margin-bottom:10px;text-shadow:1px 1px #fff;">
<center>{$lang->stats_newestuser}</center>
</div>
{$forums}
<div style="width:500px;border-radius:5px;background:#f5f5f5;border:1px dotted #ccc;margin:0 auto;padding:10px;margin-bottom:10px;text-shadow:1px 1px #fff;">
<?php
function getTwitterFollowers($username) {
$xml=file_get_contents('http://twitter.com/users/show.xml?screen_name='.$username);
if (preg_match('/followers_count>(.*)</',$xml,$match)!=0) {
$count = $match[1];
}
return $count;
}
?>
<center><h2><a href="http://twitter.com/GamerTopia" target="_blank">Y en twitter tenemos <?php echo getTwitterFollowers('GamerTopia'); ?> seguidores</a></h2></center>
</div>
{$boardstats}
<!-- <dl class="forum_legend smalltext">
<dt><img src="{$theme['imgdir']}/on.png" alt="{$lang->new_posts}" title="{$lang->new_posts}" style="vertical-align: middle; padding-bottom: 4px;" /></dt>
<dd>{$lang->new_posts}</dd>
<dt><img src="{$theme['imgdir']}/off.png" alt="{$lang->no_new_posts}" title="{$lang->no_new_posts}" style="vertical-align: middle; padding-bottom: 4px;" /></dt>
<dd>{$lang->no_new_posts}</dd>
<dt><img src="{$theme['imgdir']}/offlock.png" alt="{$lang->forum_locked}" title="{$lang->forum_locked}" style="vertical-align: middle;" /></dt>
<dd>{$lang->forum_locked}</dd>
</dl> -->
{$footer}
</body>
</html>
Eso es lo que hay en la plantilla Index del foro. No sé si es eso lo que necesitabas, pero viendo eso, veo algo de "a lot", pero no sé muy bien qué pasa...
Gracias de antemano ^^