Invision Power Board:在板索引顶部添加消息

发布于 2024-10-16 01:13:13 字数 182 浏览 0 评论 0原文

我在这里浪费时间试图完成使用任何其他论坛软件需要两分钟的事情。 IPB 的模板系统疯狂

无论如何:我只想在论坛列表之前、我的讨论板索引页面顶部添加一个简单的 HTML 块,特别是一段文本。有人能好心地为我指出正确的方向吗?即,我必须编辑的模板是什么?

非常感谢,任何提示将不胜感激。

And here I am, wasting my time trying to achieve things that would take two minutes with any other forum software.
IPB's template system is insane.

Anyway: I just want to add a simple block of HTML, specifically a paragraph of text, on top of my board's index page, before the forums list. Could someone be so kind to point me in the right direction? i.e., what's the template I have to edit?

Thanks a lot, any hint would be appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

喜你已久 2024-10-23 01:13:13

没关系,我找到了怎么做:

  1. ACP、Look &感觉、IP.Board、模板、Board Index、boardIndexTemplate

  2. 查找

  3. 在其后面添加:

    您的留言在这里

另外,如果您只想向访客显示消息,请将该 HTML 代码包含在以下 if 语句中:

<if test="!$this->member->getProperty('member_id')">

</if>

Nevermind, I found out how to do it:

  1. ACP, Look & Feel, IP.Board, Templates, Board Index, boardIndexTemplate.

  2. Find <!-- CATS AND FORUMS -->

  3. Add after it:

    <div class="message" style="margin-top: 5px; margin-bottom: 12px;">
    Your message here
    </div>
    

Plus if you want to show the message for guests only, wrap that HTML code in this if statement:

<if test="!$this->member->getProperty('member_id')">

</if>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文