- UID
- 1816
- 注册
- 2022/06/15
- 消息
- 23
- 解决方案
- 1
- 黄金
- 3,917G
如实现下图添加快捷转账功能。



- 在你要修改的模板中找到member_macros
- 往图示红线位置添加如下代码:自定义按钮代码:
<xf:if contentcheck="true"> <div class="buttonGroup"> <xf:contentcheck> <xf:if is="$xf.visitor.canStartConversationWith($user)"> <xf:button href="{{ link('mjc-credits/send-credit', null, {'username': $user.username}) }}" class="button--link"> {{ phrase('transfer_accounts') }} </xf:button> </xf:if> </xf:contentcheck> </div> </xf:if>
- 最后,添加中文短语就大功告成啦!(你可以不填写,直接将
{{ phrase('transfer_accounts') }}
改成你想要的字符)
