- XF Compatibility
- 2.1.x
- 2.2.x
- Headline
- This template mod will hide the extra user info in messages by default
- Short Description
- Download and Discuss Premium, Business Collapsible User Extras 1.0 version with External download URL on NullPro Community. There are store on a third-party network disk platform. From Collapsible User Extras have 199 Views.
This template mod will hide the extra user info in messages by default. Stats can be shown by simply clicking the expand arrow.
I will only support default styles, no 3rd party styles will receive support. Along with that if you use a Pixel Exit style this is already built into each style. 😛
Template
Add below:
Template
Replace with:
Add to extra.less template:
I will only support default styles, no 3rd party styles will receive support. Along with that if you use a Pixel Exit style this is already built into each style. 😛
Template
Find:
Code:
<xf:macro template="message_macros" name="user_info" arg-user="{$post.User}" arg-fallbackName="{$post.username}" arg-dateHtml="{$dateHtml}" arg-linkHtml="{$linkHtml}" />
Add below:
Code:
<span id="collapse-{$post.post_id}" class="collapseTrigger collapseTrigger--block" data-xf-click="toggle" data-target="#js-post-{$post.post_id} .m-userExtras"></span>
Template
Find:
Code:
<div class="m-userExtras">
Code:
<div class="m-userExtras m-userExtras-body m-userExtras--collapsible">
CSS:
/* User Extras Collapse */
.m-userExtras-body
{
.m-listPlain();
&.m-userExtras--collapsible
{
.has-no-js & { display: block; }
.m-transitionFadeDown();
}
}
.m-cell
{
.collapseTrigger
{
text-align: center;
&.is-active:before
{
transform: rotate(-180deg);
}
&:before
{
content: "\f13a";
color: @xf-linkColor;
transition: ease-in transform .3s;
width: auto;
}
&.collapseTrigger--block:before
{
float: none;
}
}
}
@media (max-width: @xf-responsiveNarrow)
{
.m-cell
{
.collapseTrigger
{
display: none;
}
}
}