MyBB Community Forums

Full Version: Battlefield 3
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
well johnny, sky blue links would look good tho (opinion) try this shade i really like it on dark backgrounds #4a9494
V1.0 alpha:

-Folder icons
-star rating icons
-last post column edit

V1.1 alpha:

-New theme editor (based on Onyx theme editor,but without editor.js edit)
-Postbit and postbit classic redone (less table/td/tr tags like postbit_author column or postbit bottom)
-Profile redone (tabbed profile,two divs and tab content in table tag)

Gallery: http://imgur.com/a/sS66B#6
Love the design. Can't really find any fault.

Good luck. Smile
Working demo on http://mts22.hostei.com/forum/ (username: test / pass:test12 or username:testaccount pass:test12) (for bg image press brush button to toggle image).

Known bugs:
-color on pm alert,mod alert,warning alert,quote,php,code
-no default bg image

Update:
-new tfoot bg and color
-new editor (Onxy theme editor and image edits require editor.js edit so new theme is based on office 2007 editor)
-Template updates to 1.6.6
Theme is submitted to mybb mods db (awaiting validation).First post is updated with temp zip file and theme info.
Hallo.

Your skin is great. But we've got some problems with it. How can we configure it to cooperate with this, very helpful plugin?

http://mods.mybb.com/view/view-unreads-posts

Youre theme doen't show this plugins "Unread Post" near post number.

Could you help us out?

Our forum is now here: http://www.sfora.tox.pl/66PzDiv/ForumMyBB/index.php

I've managed to add simple "Search->Unread Posts", but this is not it...

Also there is a minor bug in this line:

11707:
<ul>
<li><a href="http://localhost/testforum2/search.php">Advanced search</a></li>
<li><a href="http://localhost/testforum2/search.php?action=getnew">{$lang->welcome_newposts}</a></li>
<li><a href="http://localhost/testforum2/search.php?action=getdaily">{$lang->welcome_todaysposts}</a></li>
</ul></li>{$welcomeblock}</ul>
</div>

Looks great. Excellent work!
For view unread posts plugin you will need to add few template edits manually.

1.Go to ACP -> Templates and styles -> Templates -> BF3 templates -> Header templates -> header_welcomeblock_member and find

<li><a href="{$mybb->settings['bburl']}/private.php">{$lang->welcome_pms}</a></li>

and add under
<li><!-- UNREADPOSTS_LINK --></li>

then save it.

Go to Global templates (ACP -> Templates and styles -> Templates -> Global templates) and open unreadPosts_link template and remove

 | 

save it.

Open unreadPosts_linkCounter and remove
 | 
save it.

Go to Postbit Templates and open postbit_posturl and add

 <!-- IS_UNREAD --> 

before

{$post['inlinecheck']}

save it.

And that structure isn't a bug since search links are in submenu

<div class="menu">
<ul>
<li><a href="#">Link</a></li>
<li><a href="#">Link</a></li>
<li><a href="#">Link</a>
  <ul>
      <li><a href="#">Sublink</a></li>
      <li><a href="#">Sublink</a></li>
      <li><a href="#">Sublink</a></li>
   </ul>
</li>
<li><a href="#">Link</a></li>
</ul>
</div>


Quote:'ve managed to add simple "Search->Unread Posts", but this is not it...

View unread posts won't work with guest group http://community.mybb.com/thread-71986.html .
Dont know why, but this line is not working well for me: <li><!-- UNREADPOSTS_LINK --></li>

There is blank menu only.

but i've managed to do something like this in xml file (i'm no programmer, dont know how and where make some changes inside mybb admin panel)

<li><a href="#">{$lang->toplinks_search}</a>
<ul>
<li><a href="{$mybb->settings['bburl']}/search.php?action=unreads">Unread Posts</a></li>
<li><a href="{$mybb->settings['bburl']}/search.php">Advanced search</a></li>
<li><a href="{$mybb->settings['bburl']}/search.php?action=getnew">{$lang->welcome_newposts}</a></li>
<li><a href="{$mybb->settings['bburl']}/search.php?action=getdaily">{$lang->welcome_todaysposts}</a></li>

</ul></li>{$welcomeblock}</ul>
</div>

works ok, but is it ok? will it do all function of the plugin? Guest group is... not important to me right now Smile

Sometimes i've got wrong indication that what is read, and what is not read in main menu (the icon on main menu says that are new post even after i've read them).

Thanks for your help!

Don't know is there possible to just jump to the first unread post with this plugin because now it just opens the page, and you still have to roll down to the unread post (will test is it problem of plugin or of the theme). But maybe you got some ideas?

Sorry for my naive question but should those two files: "unreadPosts_link,
unreadPosts_counter" be blank? I want this plugin to work also on standard theme. Could you explain me what those files and line did?

unreadPosts_link
| <a href="{$mybb->settings['bburl']}/search.php?action=unreads">{$lang->unreadPostsLink}</a> 
(i suppose that this is link with appears somewhere)
and this:
unreadPosts_linkCounter

i've deleted something here... and i've didn't save a back up. was it important? Smile

By the way, you added some theme editor - how it works? want a little change some colors, but what i've googled - in mybb you must just find the name of part of forum, and then change it... this is quite hard for new guy.

PS. maybe i've done something wrong, but when I had <li><a href="http://localhost/testforum2/search.php">Advanced search</a></li> there was wrong link indication.
<!-- UNREADPOSTS_LINK --> you are including this in header_welcomeblock_member template after you have enabled and configureted that plugin (li tags are there since unread posts are included in ul submenu).You don't need this

Quote:<li><a href="{$mybb->settings['bburl']}/search.php?action=unreads">Unread Posts</a></li>

since output is loaded from unreadPosts_link (and unreadPosts_linkCounter) template.

Plugin will indicate new posts without any problems (tested on localhost installation) http://i.imgur.com/eHA12.png .

Quote:Sorry for my naive question but should those two files: "unreadPosts_link,
unreadPosts_counter" be blank

No.You just needed to remove this symbol |.

If that two templates are blank repaste following content inside:

unreadPosts_link

| <a href="{$mybb->settings['bburl']}/search.php?action=unreads">{$lang->unreadPostsLink}</a>

unreadPosts_linkCounter

| <a href="{$mybb->settings['bburl']}/search.php?action=unreads">{$lang->unreadPostsLink} {$unreadPostsCounter}</a>

And the only thing that you needed to remove is this symbol |.

For plugin settings and other indicators (new post,unread post) look at readme file / plugin settings / plugin support thread.

For BF editor if you have uploaded bf editor folder in jscripts to your forum root then activate it from theme settings (editor style).

Editor: http://i.imgur.com/ElyEZ.png

Update: v1.1 version added to theme db

Fixes:
-Links to advanced search,today's posts,new posts
-two icons (dot_hotlocknewfolder.png and newhotlockfolder.png) added to images/bf/folder
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17