Lack of interest Make redirected threads in thread list clearer

This suggestion has been closed automatically because it did not receive enough votes over an extended period of time. If you wish to see this, please search for an open suggestion and, if you don't find any, post a new one.

ivp

Active member
Our members are very confused how redirected threads are displayed in the list of threads.

Such threads have number of replies and views displayed as "-" and date of the last post as "N/A". Just a small icon is actually saying that the thread has been redirected.

It would be better to clearly display such information, e.g. in thread_list_macros template replace:
Code:
<xf:if is="$thread.discussion_type == 'redirect'">
    {{ phrase('n_a') }}
<xf:else />
with:
Code:
<xf:if is="$thread.discussion_type == 'redirect'">
    ({{ phrase('redirect') }})
<xf:else />
 
Upvote 1
This suggestion has been closed. Votes are no longer accepted.
Top Bottom