[.🇨🇺] Post Color Highlighting

[.🇨🇺] Post Color Highlighting 2022-11-16

没有下载权限
摘要
Create a template xfposthighligh and copy Invision Community feature code. Edit Xenforo's postmacros to add adminhighlight styling in extra.less for custom forum highlights. Customize with [data-container-key="node-X"] for specific forums.
One day I was checking the Invision Community website and I came across this feature, so I set out to replicate it for Xenforo.


Step number 1:

We create a template called xf_post_highligh and copy the following code:
PHP:
One day I was checking the Invision Community website and I came across this feature, so I set out to replicate it for Xenforo.
Step number 1:
We create a template called xf_post_highligh and copy the following code:
Setp number 2:

go to the template post_macros and edit the following line:
HTML:
<div class="message-cell message-cell--main">

then add to extra.less :
CSS:
.admin_highlight {
border: 2px solid red;
box-shadow: 0 0 10px red;
}

Result:
1668442899763.webp

If you only want to display the highlight in only one forum you can use this code in extra.less
CSS:
[data-container-key="node-X"]
{
.admin_highlight {
border: 2px solid red;
box-shadow: 0 0 10px red;
}
    }
作者
axtona
浏览
587
首次发布
上次更新
评分 0.00 星 0 个评分
链接失效了吗? 发送消息 给 NP 团队,我们会尽快为您处理!
支持开发者 如果您对测试满意或项目已成功盈利,可点击「更多信息」按钮,通过购买来支持开发者!

来自 axtona 的更多资源

Relevio.ai A
Relevio.ai 1.0.0
这是一个针对XenForo的Relevio插件,它是一个独特的上下文感知、规则驱动的内容管理引擎
AI 论坛BOT A
AI 论坛BOT 1.1.1
论坛bot给你一个训练在你论坛自身内容上的.bot
Persona - 个性化你的论坛身份 A
Persona为论坛上的每一个成员提供了工具,让他们能够打造自己的存在感。

相似的资源

返回
顶部