MyBB Community Forums

Full Version: Rating Section
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
ive been looking around the place and couldnt find an option to disable the rating part.

how do you do it as it is taking up far to much space on the displaying of threads part.
Admin CP --> Templates --> Modify / Delete --> Forum Display Templates --> forumdisplay_threadlist_rating
Remove all code

Note that users will still be able to rate threads, it just won't take up space when viewing forumdisplay.php pages. Smile
cheers its gotten rid of it but now it has gone strange: http://www.ffskies.com/forums/forumdisplay.php?fid=2

as in Last Post is now in a different column to where its suppose to be
Open forumdisplay_thread template and remove
{$rating}
thanks all sorted now
okay this is not to do with the Rating Section but its based on the same principle but to do with Author.

is it possible to have the Author under the threads name? i.e:
"Reporting Section
by AmethystSword" (but in a smaller font size)

and if so how do you do it and how do you remove the the Author column?

thanks in advance.
Open forumdisplay_thread

Find && Remove
	<td align="center" class="{$bgcolor}">{$thread['profilelink']}</td>

Find
{$thread['subject']}</a>

Replace By
{$thread['subject']}</a><br /><span class="smalltext">{$lang->by} {$thread['profilelink']}</span>

Open forumdisplay_threadlist

Find && Remove
		<td class="tcat" align="center" width="14%"><span class="smalltext"><strong><a href="{$sorturl}&sortby=starter&order=asc">{$lang->author}</a> {$orderarrow['starter']}</strong></span></td>
thanks! great help that was.

if possible, do you know how to solve another issue im having: http://community.mybboard.net/showthread...&page=last
AmethystSword Wrote:thanks! great help that was.

if possible, do you know how to solve another issue im having: http://community.mybboard.net/showthread...&page=last

Can you try this?
if($mybb->user['uid'] != 0)
{
	echo $welcomeblock;
}
right okay i tried that.

the Admin CP part appears and then the welcomeblock, everything appears (which i dont really want as i dont want the current time to be there)
Pages: 1 2