XenForo
Administrative
- Thread starter
- Admin
- #1
So I'm building my first addon that will deal with too long thread titles. So far it can find threads with title length longer than 70 characters and list them.
What I want to do next is to bulk fix them by removing " | Board title" from their titles. So I created a PAGE_CONTAINER template modification that will replace
Code:
with
Code:
Read more
ادامه مطلب...
What I want to do next is to bulk fix them by removing " | Board title" from their titles. So I created a PAGE_CONTAINER template modification that will replace
Code:
<title><xf:title formatter="%s | %s" fallback="{$xf.options.boardTitle}" page="{$pageNumber}" /></title>with
Code:
Code:
<title>
<xf:if is="$noBoardTitle">
<xf:title...
Read more
ادامه مطلب...