如何删除 Liferay 自定义主题中的小部件标题
How to remove widget's title in Liferay's custom theme
我通过 IDE 创建了 Liferay 7.2 的自定义主题。当我尝试修改任何小部件的 "Look and feel" 设置时,我无法删除标题或查看 "Application Decorators".
选项的下拉列表
我按照这个 tutorial 创建了 "liferay-look-and-feel.xml"。使用此文件,选项的下拉菜单现在可见,但我仍然无法删除任何标题。即使在 "Use Custom Title".
中选择 "Barebone" 选项和 "No"
我打印了 portlet 首选项,"portletSetupUseCustomTitle" 属性 设置为 false
可能是我的主题设置缺少配置,但我不知道是哪一个。
In your custom theme find portlet.ftl file Add this line where title are shown
<#if portlet_display.getPortletDecoratorId() != "barebone">
<div class="autofit-col autofit-col-expand">
<h2 class="portlet-title-text">${portlet_title}</h2>
</div>
</#if>
我通过 IDE 创建了 Liferay 7.2 的自定义主题。当我尝试修改任何小部件的 "Look and feel" 设置时,我无法删除标题或查看 "Application Decorators".
选项的下拉列表我按照这个 tutorial 创建了 "liferay-look-and-feel.xml"。使用此文件,选项的下拉菜单现在可见,但我仍然无法删除任何标题。即使在 "Use Custom Title".
中选择 "Barebone" 选项和 "No"我打印了 portlet 首选项,"portletSetupUseCustomTitle" 属性 设置为 false
可能是我的主题设置缺少配置,但我不知道是哪一个。
In your custom theme find portlet.ftl file Add this line where title are shown
<#if portlet_display.getPortletDecoratorId() != "barebone">
<div class="autofit-col autofit-col-expand">
<h2 class="portlet-title-text">${portlet_title}</h2>
</div>
</#if>