織夢轉(zhuǎn)eyoucms模板標(biāo)簽替換方法
2022-11-29 加入收藏
1、列表頁面 title位置
{$eyou.field.title} 需要修改成 {$eyou.field.typename } 或者整個(gè)title改成 {$eyou.field.seo_title}
2、內(nèi)頁子欄目菜單 不顯示高亮,點(diǎn)擊欄目到詳情頁不顯示。需要如下修改
高亮顯示 eyou沒有這樣的寫法
修改如下
{eyou:channel type='first' currentstyle="con"}
<li><a href="{$field.typeurl}" title="{$field.typename}" class='{$field.currentstyle}'>{$field.typename}</a></li>
{/eyou:channel}
注意紅字的修改
3、sql標(biāo)簽錯(cuò)誤,一般出現(xiàn)在公司簡介,聯(lián)系方式等欄目在首頁調(diào)用的時(shí)候出現(xiàn)。比如
遇到此問題,可以用eyou欄目標(biāo)簽實(shí)現(xiàn)
{eyou:type typeid='1' addfields='content' id='field'} {$field.content|html_msubstr=###,0,300,true}{/eyou:type}
注意紅字 1 表示 欄目的id,改成你的公司簡介或者聯(lián)系方式等欄目的id即可。 紅字300 表示顯示的字?jǐn)?shù),可以適當(dāng)調(diào)整。
4、目前留言模型無法轉(zhuǎn)移,需要手動(dòng)后臺(tái)將模型改成留言模型,屬性列表里建立相關(guān)留言內(nèi)容字段,然后新建lists_guestbook.htm模板,修改留言標(biāo)簽即可。標(biāo)簽如下:
{eyou:guestbookform type='default'}<form method="POST" action="{$field.action}" {$field.formhidden} onsubmit="{$field.submit}" ><input id="attr_1" type="text" value="" name="{$field.attr_1}" placeholder="{$field.itemname_1}"><input id="attr_2" type="text" value="" name="{$field.attr_2}" placeholder="{$field.itemname_2}"><textarea id="attr_3" cols="40" rows="3" name="{$field.attr_3}" placeholder="{$field.itemname_3}"></textarea><input type="submit" value="提交">{$field.hidden}</form>
{/eyou:guestbookform}
5、基本信息自定義字段,修改
類似字段請按照后臺(tái)eyou的標(biāo)簽填寫:
復(fù)制對應(yīng)標(biāo)簽到相應(yīng)位置即可。
6、
遇到此類語法錯(cuò)誤問題,可以按照上圖的提示,找到緩存文件 167行
這樣就可以大致定位到模板的位置了,
發(fā)現(xiàn)依然還是織夢的php語法不適應(yīng)eyou,需要針對性的修改下,這里發(fā)現(xiàn)還是調(diào)用但欄目內(nèi)容出現(xiàn)的問題,所以只要根據(jù)eyou的標(biāo)簽寫法寫出來就行了
{eyou:type typeid='8' addtable='single_content'}{$field.content|html_msubstr=###,0,275}...{/eyou:type}
改下id 和調(diào)用的文章字?jǐn)?shù)即可排除問題!
7、
搜索標(biāo)簽,需要根據(jù)eyou標(biāo)簽修改,標(biāo)簽如下
{eyou:searchform type='sonself'}
<form method="get" action="{$field.action}">
<input type="text" name="keywords" />
<input type="submit" value='點(diǎn)擊搜索' />
{$field.hidden}
</form>
{/eyou:searchform}