动易Siteweaver默认自定义列表是不能显示标题字体颜色等属性的。
要想让自定义列表显示颜色需要修改include文件夹的Powereasy.Common.Front.asp,方法如下:
打开include文件夹的Powereasy.Article.asp,找到2352行左右的Private Function GetCustomFromLabel(strTemp, strList)函数
找到下面的代码
If TitleLen > 0 Then
strTemp = PE_Replace(strTemp, "{$Title}", GetSubStr(rsCustom("Title"), TitleLen, ShowSuspensionPoints))
Else
strTemp = PE_Replace(strTemp, "{$Title}", rsCustom("Title"))
End If
将这段代码改成
If TitleLen > 0 Then
strTemp = PE_Replace(strTemp, "{$Title}", GetInfoList_GetStrTitle(rsCustom("Title"), TitleLen, rsCustom("TitleFontType"), rsCustom("TitleFontColor")))
Else
strTemp = PE_Replace(strTemp, "{$Title}", GetInfoList_GetStrTitle(rsCustom("Title"), 0, rsCustom("TitleFontType"), rsCustom("TitleFontColor")))
End If
因为这里我们需要用到字体颜色,字体类型两个字段,所以我们还要修改一下SQL语句,加入这两个字段.
还是找到这个函数的
sqlCustom = sqlCustom & "A.ArticleID,A.ChannelID,A.ClassID,A.Title,A.Subheading,A.Keyword,A.Intro,A.DefaultPicUrl"
替换成
sqlCustom = sqlCustom & "A.ArticleID,A.ChannelID,A.ClassID,A.Title,A.TitleFontType,A.TitleFontColor,A.Subheading,A.Keyword,A.Intro,A.DefaultPicUrl"
相关文章
GODADDY空间动易6.8生成静态页百度收录乱码的解决方法2012-10-08
godaddy安装动易 SiteWeaver CMS6.8教程2012-10-08
siteweaver 6.8 相关文章增加图片显示的解决办法2012-09-27
动易siteweaver验证码修改为4位的方法2012-02-16
siteweaver 栏目地址不显示扩展名2012-02-01
频道一级栏目导航的函数标签-动易siteweaver2010-11-07
SiteWeaver 6.8 UTF-8版2010-08-03
动易SiteWeaver去除首页和频道扩展名的方法2010-06-07
动易sitewear频道自定义字段首页不能调用的解决方法2010-01-30