为何我的首页“会员登录”进去后没有“用户中心”和“退出”这两项?

2016-07-07 16:10 来源:www.chinab4c.com 作者:ecshop专家

www.n-yeon.com网站首页的“会员登录”这里会员登录进去后为什么在网页没有“用户中心”“退出”这两项?我想弄成这样的效果,会员登录进去后是这样的,有“用户中心、退出”如图2.我这个登录进去后如果没有选择“用户中心”会直接跳到首页,而且我想再到个人用户中心去查看信息,必须得再登录一次后,选择个人用户中心才能看到信息。这是怎么回事?我应该到哪个文件里去修改一下啦?


这是我使用的版本信息:lativ v1.0





PHP 版本:5.2.5MySQL 版本:5.2.0-falcon-alpha-community-nt
安全模式:安全模式GID:
Socket 支持:时区设置:UTC
GD 版本:GD2 ( JPEG GIF PNG)Zlib 支持:
IP 库版本:20071024文件上传的最大大小:20M
ECShop 版本:v2.6.2 RELEASE

2.jpg (2.25 KB)

2.jpg

1.jpg (10 KB)

1.jpg


回答:
内衣加盟O(∩_∩)O哈哈~

问题解决了,方法是这样的,记录的有些乱,朋友们可能会看不明白,不过还是贴出来分享一下:
在page_header.lbi里
第5行代码修改为:<div id="HeadTop" class="clearfix">

第21行起加以下代码:
<!--userInfo start-->
<div id="ECS_MEMBERZONE" class="f_r">
{insert_scripts files='transport.js,utils.js'}
{* ECSHOP 提醒您:根据用户id来调用member_info.lbi显示不同的界面*}{insert name='member_info'}
</div>
<!--userInfo end-->


将原来以图片形式表现出来的“会员登录、会员加入”删除,在style.css第200行起到220行的代码删除
#che1 a{ display:block;
width:60px; height:24px; line-height:24px;
background:url(images/cheb.jpg) no-repeat top left;
text-decoration: none;
}
#che1 a:hover {
background:url(images/che2.jpg) no-repeat top left;
text-decoration: none;

}

#che2 a{ display:block;
width:60px; height:24px;line-height:24px;
background:url(images/chea.jpg) no-repeat top left;
text-decoration: none;
}
#che2 a:hover {
background:url(images/che1.jpg) no-repeat topleft;
text-decoration: none;

}

再把第222行的代码:
#che3 a{ display:block;
width:60px; height:24px;line-height:24px;
background:url(images/chec.jpg) no-repeat topleft;
text-decoration: none;
改为:
#che1 a{ display:block;
width:60px; height:24px;line-height:24px;
background:url(images/chec.jpg) no-repeat topleft;
text-decoration: none;



再把第188行起的相应代码值重新设置一下:
#page-header .che{
color:#666666;
text-align:center;
height:20px;
overflow: hidden;
margin-bottom:5px;
width:273px;
margin-right:2px;
font-weight:bold;
float:right;

再到page_header.lbi里第7行到13行的这段代码删除:
<div class="che">
<p>
<span id="che1"><A href="user.php?act=login">&nbsp; &nbsp; </A></span>
<span id="che2"><A href="user.php?act=register">&nbsp; &nbsp; </A></span>
<span id="che3"><A href="../flow.php">&nbsp; &nbsp; </A></span>
</p>
</div>

支持共享~~



选择个人用户中心才能看到信息。这是怎么回事?我应该到哪个文件里去修改一下啦?