- Файл: app/design/frontend/default/galasoftwaremarket/template/em_blog/post/list.phtml
- Вероятные строки: 29-36
- Что найти:
<?php if(!Mage::getStoreConfig('blog/comments_facebook/enabled')):?> <span class="comment-count"> <?php echo $this->getCommentByPost($post->getId())->count(); ?> </span> <?php else:?> <fb:comments-count href=<?php echo $post->getPostUrl(false)?>></fb:comments-count> <?php endif;?> <a class="comment-post-link" href="<?php echo $post->getPostUrl(); ?>" ><?php echo $this->__('Comments')?></a>
- На что заменить:
<a class="comment-post-link" href="<?php echo $post->getPostUrl(); ?>" ><?php echo $this->__('Comments count:')?></a> <?php if(!Mage::getStoreConfig('blog/comments_facebook/enabled')):?> <span class="comment-count"> <?php echo $this->getCommentByPost($post->getId())->count(); ?> </span> <?php else:?> <fb:comments-count href=<?php echo $post->getPostUrl(false)?>></fb:comments-count> <?php endif;?>
Было:
Стало: