XF 2.2 Remove creation post thread date

Furry-190

Member
Hello, how can I remove the post CREATION DATE in the threads? Just the creation date, not the ones of the answers.
I send you an attached file.
Thank you
 

Attachments

  • quitar-fecha-1.webp
    quitar-fecha-1.webp
    75.7 KB · Views: 9
Hello,
In thread_view template search for (around line 16)
HTML:
<li>
    <xf:fa icon="fa-clock" title="{{ phrase('start_date')|for_attr }}" />
    <span class="u-srOnly">{{ phrase('start_date') }}</span>
  
    <a href="{{ link('threads', $thread) }}" class="u-concealed"><xf:date time="{$thread.post_date}" /></a>
</li>
replace by
HTML:
<!--
    <li>
        <xf:fa icon="fa-clock" title="{{ phrase('start_date')|for_attr }}" />
        <span class="u-srOnly">{{ phrase('start_date') }}</span>
      
        <a href="{{ link('threads', $thread) }}" class="u-concealed"><xf:date time="{$thread.post_date}" /></a>
    </li>
-->
 
Hello,
In thread_view template search for (around line 16)
HTML:
<li>
    <xf:fa icon="fa-clock" title="{{ phrase('start_date')|for_attr }}" />
    <span class="u-srOnly">{{ phrase('start_date') }}</span>
 
    <a href="{{ link('threads', $thread) }}" class="u-concealed"><xf:date time="{$thread.post_date}" /></a>
</li>
replace by
HTML:
<!--
    <li>
        <xf:fa icon="fa-clock" title="{{ phrase('start_date')|for_attr }}" />
        <span class="u-srOnly">{{ phrase('start_date') }}</span>
     
        <a href="{{ link('threads', $thread) }}" class="u-concealed"><xf:date time="{$thread.post_date}" /></a>
    </li>
-->
Thank you!
 
Top Bottom