Remove counter from redirect board

Started by onemoresolo, April 18, 2017, 07:19:21 AM

Previous topic - Next topic

onemoresolo

Hi there,

I'd like to remove the redirect counter from my redirect board. Could someone let me know how to do this please? I think the relevant code is:

            // Show some basic information about the number of posts, etc.
               echo'', comma_format($board['posts']), ' ', $board['is_redirect'] ? '<i class="icon-paper-plane"></i>' : '<i class="icon-chat"></i>', '
                  ', $board['is_redirect'] ? '' : comma_format($board['topics']) . ' <i class="icon-comment"></i>', '';

               echo '</div>
               </div>
               <div class="lastpost block"><div>';

Pipke

for smf 2.0.x on default theme in BoardIndex.template.php

find

// Show some basic information about the number of posts, etc.
echo '
</td>
<td class="stats windowbg">
<p>', comma_format($board['posts']), ' ', $board['is_redirect'] ? $txt['redirects'] : $txt['posts'], ' <br />
', $board['is_redirect'] ? '' : comma_format($board['topics']) . ' ' . $txt['board_topics'], '
</p>
</td>


replace by

// Show some basic information about the number of posts, etc.
echo '
</td>
<td class="stats windowbg">
<p>', $board['is_redirect'] ? '' : comma_format($board['posts']), ' ', $board['is_redirect'] ? '' : $txt['posts'], ' <br />
', $board['is_redirect'] ? '' : comma_format($board['topics']) . ' ' . $txt['board_topics'], '
</p>
</td>

"If something is wrong, fix it if you can. But train yourself not to worry: Worry never fixes anything."

Click here to view my mods for SMF

Hey 👋 Did i helped... you like what i do. You can now buy me a coffee! ☕

onemoresolo

Thanks Pipke, but is it possible to do this on the Canvas theme?

Pipke

Quote from: onemoresolo on April 18, 2017, 11:50:44 AM
Thanks Pipke, but is it possible to do this on the Canvas theme?

find

// Show some basic information about the number of posts, etc.
echo'', comma_format($board['posts']), ' ', $board['is_redirect'] ? '<i class="icon-paper-plane"></i>' : '<i class="icon-chat"></i>', '
', $board['is_redirect'] ? '' : comma_format($board['topics']) . ' <i class="icon-comment"></i>', '';


replace by

// Show some basic information about the number of posts, etc.
echo'', $board['is_redirect'] ? '' : comma_format($board['posts']), ' ', $board['is_redirect'] ? '' : '<i class="icon-chat"></i>', '
', $board['is_redirect'] ? '' : comma_format($board['topics']) . ' <i class="icon-comment"></i>', '';


ps. not tested live, but it should work i guess.
"If something is wrong, fix it if you can. But train yourself not to worry: Worry never fixes anything."

Click here to view my mods for SMF

Hey 👋 Did i helped... you like what i do. You can now buy me a coffee! ☕

Advertisement: