ppypp伦理天堂,91手机在线视频,免费在线观看黄色毛片,夜夜穞天天穞狠狠穞AV美女按摩

聯系官方銷售客服

1835022288

028-61286886

投訴 已解決 我自定義某個欄目的搜索模板為a.html,點擊搜索后還是系統默認的搜索模板結果頁面呢 2 0

您好,我自定義某個欄目的搜索模板為a.html,并且此欄目的內容模塊是zpzl(是我自定義的)

代碼如下

<form class="search-form" action="/index.php" method="get">

<input type="hidden" name="s" value="zpzl">

<input type="hidden" name="c" value="search">

<input type="text" placeholder="搜索內容..." name="keyword" style="width:450px; height:40px; float:left; display:inline; border:1px solid #c5161e; text-align:left; color:#9f9f9f;" value="" />

<input type="submit" style="width:75px; height:42px; float:left; display:inline; background-color:#c5161e; border:none; color:#FFFFFF; font-size:18px;" value=" 搜索" />

</form>

但是點擊搜索后還是系統默認的搜索模板結果頁面,然后跳轉到我設置的a.html 模板界面呢

解決方案
  • <form class="search-form" action="/index.php" method="get">
       <input type="hidden" name="s" value="zpzl">
    <input type="hidden" name="c" value="search">
    <input type="hidden" name="catid" value="這里填寫設置自定義模板的欄目id號">

    基于欄目的搜索模板自定義,需要附帶catid,表示哪個欄目

    滿意答案
    開源積分+10
  • 回復@迅睿框架聯合創始人 非常感謝 還請問自定義搜索結果頁面 我目前是

    {search module=MOD_DIR id=$searchid total=$sototal order=$params.order catid=$catid page=1 pagesize=5 urlrule=$urlrule return=rs}

    <tr>

    <td width="3%" height="50" align="center" valign="middle" style=" border-bottom:1px dashed #e0e0e0;"><img src="images/tb04.jpg" /></td>

    <td width="61%" height="50" style=" border-bottom:1px dashed #e0e0e0;"><a href="{$rs.url}">{$rs.title}…</a></td>

    <td width="20%" height="50" style="color:#aaaaaa; border-bottom:1px dashed #e0e0e0;">{$rs.wjdx}</td>

    <td width="16%" height="50" align="center" valign="middle" style=" border-bottom:1px dashed #e0e0e0;"><a href="{dr_down_file($rs.xiazai)}" style="width:67px; height:27px; display:block; border:1px solid #dddddd; color:#979797; text-align:center; font-size:16px; line-height:27px; border-radius: 5px;">下載</a></td>

    </tr>

    {/search}

    這樣的,但輸入搜索詞搜索不出來

  • @迅睿框架聯合創始人:非常感謝