帖子标题不显示在magento博客中

时间:2014-10-29 10:06:05

标签: magento post blogs title

我为博客安装了magento extension "Neotheme_nBlog",但它没有显示帖子标题。它显示如下

enter image description here

1 个答案:

答案 0 :(得分:0)

app / design / frontend / base / default / template / neotheme / blog / post / summery.phtml

我改变了这段代码

<div class="page-title post-title"><h2><a href="<?php echo $this->getPost()->getReadMoreUrl(); ?>"><?php echo $this->getPost()->getTitle(); ?></a></h2></div>

有了这个

<h2><a href="<?php echo $this->getPost()->getReadMoreUrl(); ?>"><?php echo $this->getPost()->getTitle(); ?></a></h2>

删除<div class="page-title post-title">

现在正在显示帖子标题。