Я настроил что-то в файле, переопределяющем этот news файл расширения Templates/Styles/Twb/Templates/News/List.html.Это работало ...
news
Templates/Styles/Twb/Templates/News/List.html
<v:variable.set name="special.category" value="1" /> <f:if condition="{special.category}"> <f:then> Do something for the special category when the variable's boolean value is 1 </f:then> <f:else> Otherwise do something else </f:else> </f:if>
Но когда я попытался изменить его на это, оно больше не работает ...
<f:variable name="special.category" value="1" /> <f:if condition="{special.category}"> <f:then> Do something for the special category when the variable's boolean value is 1 </f:then> <f:else> Otherwise do something else </f:else> </f:if>
Я думаю, это точка в имени переменной.Может быть, переменная vhs: реализована иначе в этом случае.Может быть <f:variable name="special" value="{category: 1}"/> это работает?
<f:variable name="special" value="{category: 1}"/>