Wutime
Well-known member
Well, i have a temporary fix for the issues just to make it run error free on XF 2.3.4:
Template: tpm.less
Fix; .userBanner.userBanner--tpm
Same template: tpm.less
Fix; .block[data-widget-definition="tpm_widget"] .block-minorHeader:before
Template: widget_tpm
Fix: Hide the broken form that allows switching months on the widget
Find: <xf:if is="$xf.visitor.canChangeTPMDate()">
Replace with: <xf:if is="$xf.visitor.canChangeTPMDate() && false">
Template: tpm.less
Fix; .userBanner.userBanner--tpm
CSS:
.userBanner.userBanner--tpm
{
.xf-tpmUserBanner();
&:before
{
.m-faBase();
<xf:if is="property('xtrTPMBannerIcon')">
.m-faContent(@fa-var-trophy, false);
</xf:if>
padding-right: @xf-paddingMedium;
}
}
Fix; .block[data-widget-definition="tpm_widget"] .block-minorHeader:before
CSS:
.block[data-widget-definition="tpm_widget"] .block-minorHeader:before
{
.m-faBase();
font-size: @xf-fontSizeLarge !important;
margin-right: ((@xf-paddingMedium) - 1);
color: inherit;
.m-faContent(@fa-var-trophy, false);
}
Template: widget_tpm
Fix: Hide the broken form that allows switching months on the widget
Find: <xf:if is="$xf.visitor.canChangeTPMDate()">
Replace with: <xf:if is="$xf.visitor.canChangeTPMDate() && false">