问候每个人我想问一些关于我如何在myBlog组件中编辑我当前模板的指南,我相信......在这里定位:
\ components \ com_myblog \ templates \ bluestyle
我提出要求的主要原因是因为我不知道在哪里修复我正在维护的网站错位...
但是如果你想尝试浏览网站顶部的其他标签..其他人根本就没有问题,那就是myBlog组件除了默认的joomla模板之外还有自己的模板。
我认为问题出在我Joomla文件的这条路径
“C:\ XAMPP \ htdocs中\洛佩兹链路\部件\ com_myblog \模板\蓝天”
显然,我选择的模板在此文件夹中命名为“bluesky”,它有3个html文件( bloginfo.tmpl.html , entry.tmpl.html 和 index.tmpl.html )和css文件( template_style )。我将index.tmpl.html代码包含在下面。
index.tmpl.html
<?php
if ($entry and is_array($entry) and count($entry) != 0)
{
foreach ($entry as $e)
{
$date = strtotime($e['created']);
$month_day = strftime("%b ", $date) . strftime("%d", $date);
$year = strftime("%Y", $date);
$month_day = i8n_date($month_day);
?>
<div class="entryContent">
<div class="entry">
<table class="entryTitle">
<tr>
<td class="my-dateCell">
<div class="dateContainer">
<div class="date">
<div class="month"><span><?php echo $month_day; ?></span></div>
<div class="year"><span><?php echo $year; ?></span></div>
</div>
</div>
</td>
<td class="my-titleCell">
<div class="entry-title">
<h3><a href="<?php echo $e['permalink']; ?>"><?php echo $e['title']; ?></a></h3>
<p>_MB_POSTED_BY <a href="<?php echo $e['authorLink']; ?>"><?php echo $e['author']; ?></a> in <?php echo $e['categories']; ?></p>
</div>
</td>
<?php if(!empty($e['avatar'])){ ?>
<td class="my-avatarCell">
<div class="userAvatar">
<?php echo $e['avatar']; ?>
</div>
</td>
<?php } ?>
</tr>
</table>
<?php
if ($e['beforeContent'])
{ ?>
<div class="onBeforePrepareContent">
<?php echo $e['beforeContent'];?>
</div>
<?php
}
?>
<div class="entry-body">
<?php echo $e['text']; ?>
<div class="clear"></div>
</div>
<?php if ($e['afterContent'])
{ ?>
<div class="onAfterPrepareContent">
<?php echo $e['afterContent'];?>
</div>
<?php
}
?>
<div class="entry-footer">
<?php
if ($e['comments']!="") // if comments enabled
echo '<div class="entry-comment"><a href="'.$e['permalink'].'#comments">'.$e['comments'] .'</a>';
else
echo '<div>';
if ($e['comments']!="" and $e['readmore']=="1")
echo ' | ';
?>
<?php // IF NEED READMORE
if ($e['readmore']=="1")
{ ?>
<a href="<?php echo $e['permalink']; ?><?php echo $showAnchor; ?>">_MB_READ_MORE...</a>
<?php } ?>
</div>
</div>
</div>
<?php
}
}
?>
任何建议或建议都会受到高度追捧..指导我,谢谢你和Godbless
答案 0 :(得分:2)
已编辑: 愿这对你有所帮助。 找到代码
if ($e['readmore']=="1")
{ ?>
<a href="<?php echo $e['permalink']; ?><?php echo $showAnchor; ?>">_MB_READ_MORE...</a>
<?php }
并将其替换为
if ($e['readmore']=="1")
{ ?>
<a href="<?php echo $e['permalink']; ?><?php echo $showAnchor; ?>">_MB_READ_MORE...</a>
<?php }
echo '</div>';