我有一些文章要发布,我已经设置了一个包含所有文章内容的智能表单。我使用 PageBuilder 页面作为模板并让智能表单使用此模板。我需要具有此内容的 PageBuilder 模板的灵活性。这很好用: https ://www.ektron.com/Blogs/eGandalf/Combining-Dynamic-Content-with-PageBuilder/
我的问题是,现在我们需要有一个移动版的文章内容。
我的问题是您如何让一个智能表单与两个模板相关联。这可以由设备或 URL 确定。
例如,
if (desktop device)
use desktop template
else if (mobile device)
use mobile template
或者
if (http://domain.com/content/item)
use desktop template
else if (http://domain.com/m/content/item)
use mobile template
我尝试使用快速链接来做到这一点,但每次更新页面布局时都会重新编写快速链接。这是一个重大的维护噩梦。