By nosodave on
Hello All,
I am having a problem. First of all the theme in use is Wabi.
The setup we got is, we just have the blog latest entries on the front page.
The thing we want to do is insert the username before the post and link. The username is a link to the users blog while the title is a link to the post, something like this
I edited the theme like this:
<table class="nodetitle">
<tr>
<td>
<h2 class="title"><a href="/<?php print $name ?>" /><?php print $name ?></a>:<a href="<?php print $node_url?>"><?php print $title?></a></h2>
<span class="submitted"><?php print $submitted?></span>
<span class="taxonomy"><?php print $terms?></span>
</td>
</tr>
</table>
<?php if($picture) print $picture; ?>
<div class="content"><?php print $content?></div>
<?php if ($links) { ?><div class="links"><?php print $links?></div><?php }; ?>Yes it work perfect, but when a user is logged in problems arise.
Instead of displaying username: Blogtitle
it displays username"/>username: Blogtitle
Can anyone help me fix this error?
Thanks
-Dave