QUICK NEWS

{NEW} - A new css video is up.

{OLD} - New video courtesy of Skhilled, Thanks for posting it up.

Video of the moment:


Internal Links

SMF Sites

Quick Info

SMF recent thread does not allow Re to be posted again.

Started by Noble, May 25, 2024, 02:38 AM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

Noble

SMF recent thread does not allow Re to be posted again.

I can't find the edit location.
You cannot view this attachment.

Skhilled

What site is that and exactly where is it? Is that from the TP Recent block? If so, it is best to ask them because they can fix it or add something that will fix it.

Noble

Quote from: Noble on May 25, 2024, 02:38 AMYou cannot view this attachment.


1. open  yourwebsite.com/Themes/default/languages/index.english.php

Find
$txt['response_prefix'] = '[color=red]Re: [/color]';
then change from 'RE: '; change to '';

2. open  yourwebsite.com/Sources/Subs-Recent.php

find
INNER JOIN {db_prefix}topics AS t ON (t.id_topic = m.id_topic)

change to
INNER JOIN {db_prefix}topics AS t ON (t.id_last_msg = m.id_msg)
find
WHERE m.id_msg >= {int:likely_max_msg}

change to
WHERE t.id_last_msg >= {int:likely_max_msg}
find
ORDER BY m.id_msg DESC

change to
ORDER BY t.id_last_msg DESC
finish