MyBB Community Forums

Full Version: New Topic/Reply button not found in Square theme
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Today I have installed Square theme.

Now, I'm seeing 'New Topic/Thread' and 'New Reply' button is not available.

Help please...
are you using a different language for the forum or British language pack for English ?
if it is a different language then that may not be compatible with MyBB 1.8.x
if you are using British language pack then change to American pack & check
I can't find such an option to change language pack!
^ provide forum url & a test user account so that someone can check it
Here these are:

Forum url: http://www.hoxforum.com
User: tester
Pass: mybbtester
New Thread link is available with a image near bottom of forum display page
New Reply link is above quick reply near bottom of the show thread page

And regarding languages on your forum
it appears that your forum was installed from the web host panel
& many language packs were added. that might cause some problems
and I suggest to remove all unnecessary language packs

language packs are located at ~/inc/languages folder

language pack consists of a php file with language name and a folder
with that language name (eg. deutch_eu.php file & deutch_eu folder)

unwanted language pack can be removed by deleting both the file
and the folder with the specific language name

most probably you just need English (American) or a couple of languages for your forum ..
Yeah, my site was installed using softculous and i have deleted all unnecessary language packs now.

But, don't you think that the positions of 'new thread' and 'new reply' buttons should be on top?
^ yes, they should also appear at the top of the pages.

new thread button code => {$newthread} in forumdisplay_threadlist template
code should be similar to below at the top of the template after multipage code segment
<div class="float_left">
	{$multipage}
</div>
<div class="float_right">
	{$newthread}
</div>

new reply button code => {$newreply} in showthread template
code should be similar to below around middle of the template after multipage code segment
<div class="float_left">
		{$multipage}
	</div>
	<div class="float_right">
		{$newreply}
	</div>
.m., you just rock! Smile It worked!

Is there any way to use image there?