2017-04-19 79 views
0

是否有任何可能禁用搜索某些字段?對於'按鈕',將搜索權重設置爲0仍然基於他的內容顯示搜索結果。我的代碼在contenttypes.yml:BOLT CMS - 禁用搜索某些字段

foo: 
show_in_menu: Bar 
name: Foo Bar 
taxonomy: [sorters] 
fields: 
    title: 
     type: text 
     group: General 
    lead: 
     type: textarea 
     group: General 
    url: 
     type: text 
     group: General 
    button: 
     type: text 
     required: true 
     pattern: ^.{1,15}$ 
     searchweight: 0 
     group: Button 
     label: Text on button 
     postfix: Required, max 15 characters. 

回答

0

只需添加在您的contentType地區:searchable: false

+0

它(在這個例子中的「按鈕」)適用於整個的contentType,而不是指定字段 –