XenForo Belirli kullanıcılara mesaj içi otomatik bildirim yayınlatın
Uyumlu XF Sürümleri- 2.3.X
Description:
You can send automatic notifications to specific users in your forum. To do this, follow the steps below.
Kullandığınız temanın post_macros şablonunu açın ve aşağıdaki kod bloğunu bulun:
PHP:
<xf:extension id="attribution">
<xf:macro id="post_attribution" arg-post="{$post}" arg-thread="{$thread}" />
</xf:extension>
Hemen altına aşağıdaki kodu yapıştırın. Kullanıcı ID kısmını belirlemeyi unutmayın:
PHP:
<xf:if is="$thread.user_id == X && $post.position == 0">
<div class="kullanicibildirim">
<span class="kullanicibildirimikon"><xf:fa icon="fad fa-robot" /></span> Mesaj içi otomatik bildirim yayınlama.
</div>
</xf:if>
Son olarak aşağıda verdiğim kodu extra.less şablonuna ekleyip kaydedin:
Less:
.kullanicibildirim {
background: #e7f4fb;
color: #08910c;
margin-bottom: 0px;
font-weight: 500;
margin-top: 5px;
padding: 5px;
border-radius: 4px;
border-left: 5px solid #089470;
}