MyBB Community Forums

Full Version: [Flatty 1.8] Many questions
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello all !

Here, I have many questions about this theme that I just installed.

1- Display of group pictures in member profiles, does not appear.

Before :

[Image: 539369duende.png]

After :

[Image: 560623fleety.png]

It seems to me that it is in postbit outside yet I "Groupimage"

{$ignore_bit}
<a name="pid{$post['pid']}" id="pid{$post['pid']}"></a>
<div class="post {$unapproved_shade}" style="{$post_visibility}" id="post_{$post['pid']}">
<div class="post_author" style="background: #f6f5f7;">
    {$post['useravatar']}
    <div class="author_information">
            <strong><span class="largetext">{$post['profilelink']}</span></strong><br />
            <span class="smalltext">
                {$post['usertitle']}<br />
                {$post['userstars']}
                {$post['groupimage']}
            </span>
    </div>
    
    <div class="author_statistics_default">
        {$post['user_details']}
        {$post['groupimage']}
    </div>
    
</div>
<div class="post_content">
    <div class="post_head">
        {$post['posturl']}
        {$post['icon']}
        <span class="post_date"><i class="fa fa-clock-o fa_xtra pd"></i> {$post['postdate']} <span class="post_edit" id="edited_by_{$post['pid']}">{$post['editedmsg']}</span></span>
        {$post['subject_extra']}
    </div>
    <div class="post_body scaleimages" id="pid_{$post['pid']}">
        {$post['message']}
    </div>
    {$post['attachments']}
    {$post['signature']}
    <div class="post_meta" id="post_meta_{$post['pid']}">
        {$post['iplogged']}
    </div>
</div>
<div class="post_controls_default">
    <span style="margin-top: 6px; display: inline-block; float: left; margin-left: 2px;">{$post['onlinestatus']}</span>
    <div class="postbit_buttons author_buttons float_left">
         {$post['button_www']}{$post['button_pm']}{$post['button_rep']}
    </div>
    <div class="postbit_buttons post_management_buttons float_right">
        {$post['button_edit']}{$post['button_quickdelete']}{$post['button_quickrestore']}{$post['button_quote']}{$post['button_multiquote']}{$post['button_report']}{$post['button_warn']}{$post['button_purgespammer']}{$post['button_reply_pm']}{$post['button_replyall_pm']}{$post['button_forward_pm']}{$post['button_delete_pm']}
    </div>
</div>
</div>


2- Add the navigation menu in the forum

[Image: zkREC3w.png]

3- It is not clear notification icons

Not icons. Is there possibility to add their own images ?

[Image: MTyEruT.png]

4- Is it possible to move a block in the sidebar ?

[Image: lYepbBs.png]


Thank you for your reply and again a huge thank you to the Author score of this theme which is awesome!
(2016-02-28, 12:23 PM)Sw00p Wrote: [ -> ][...]

Hi,

1.) If I understand you correctly the groupimages are not being shown, right? It could be a wrong path to your groupimages. Have you uploaded them to the flatty-images folder and/or changed the path?

2.) I dont really know what the problem is here, the navigation menu should be displayed actually. I need more information or even better your forum URL.


3.) Do you want images instead of font-icons to be displayed there? Or do you just want to have different/bit more clear colors and different icons each single forum? Be more specific.

4.) Yes it is possible. Do you want to the old one (the one which MyBB uses by default) or do you want the current one to be displayed below the forums?
Thank you for you reply
Sorry, my English language is very bad, because i am French.

1- I have changes the path in my option group, on my ACP (http://forum-china.fr/rank/)
With my old theme, I did not have this problem.

2- My URL : http://forum-china.fr/
With my old theme, I could navigate easily, but then nothing appears ..

3- I want to display my own notification pictures

4- The current one to be displayed below the forums

Thank you very much

Hello.

1- Resolved !
Up please :-(
(2016-02-28, 07:35 PM)Sw00p Wrote: [ -> ]Thank you for you reply
Sorry, my English language is very bad, because i am French.

1- I have changes the path in my option group, on my ACP (http://forum-china.fr/rank/)
With my old theme, I did not have this problem.

2- My URL : http://forum-china.fr/
With my old theme, I could navigate easily, but then nothing appears ..

3- I want to display my own notification pictures

4- The current one to be displayed below the forums

Thank you very much

Hello.

1- Resolved !


2.) I actually don't see a problem there, I can navigate around without any problems or maybe I didn't get your point..

3.) Well, you could install the MyForumIcons plugin and test if it fits your needs.. (tell me if that was not what you wanted)


4.)
Admin CP  -  Templates & Styles  -  Templates  -  Flatty Templates  -  Index Page Templates  - Index



Scroll down to the bottom and find:

<div class="forums" style="float: left; width: 76%;">{$forums}</div>

Replace it by:

<div class="forums" style="float: left; width: 76%;">
    
    {$forums}
    
    <table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
        <tr>
          <td class="thead_2">
              <strong>{$lang->boardstats}</strong>
              <span class="float_right" style="padding-top: 3px;"><i class="fa fa-line-chart"></i></span>
          </td>
        </tr>
        <tr>
          <td class="trow1">
            {$forumstats}
          </td>
        </tr>
    </table>
    
</div>


4.1) Now you have to head to line ~50 and find

<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
    <tr>
        <td class="thead_2">
            <strong>Board Statistics</strong>
            <div class="float_right" style="padding-top: 3px;"><i class="fa fa-line-chart"></i></div>
        </td>
    </tr>
    <tr>
        <td class="trow1">
            {$forumstats}
        </td>
    </tr>
</table>

... and remove it if you don't need/want it anymore.
(2016-03-02, 12:44 AM)delay Wrote: [ -> ]
(2016-02-28, 07:35 PM)Sw00p Wrote: [ -> ]Thank you for you reply
Sorry, my English language is very bad, because i am French.

1- I have changes the path in my option group, on my ACP (http://forum-china.fr/rank/)
With my old theme, I did not have this problem.

2- My URL : http://forum-china.fr/
With my old theme, I could navigate easily, but then nothing appears ..


3- I want to display my own notification pictures

4- The current one to be displayed below the forums

Thank you very much

Hello.

1- Resolved !


2.) I actually don't see a problem there, I can navigate around without any problems or maybe I didn't get your point..

3.) Well, you could install the MyForumIcons plugin and test if it fits your needs.. (tell me if that was not what you wanted)


4.)
Admin CP  -  Templates & Styles  -  Templates  -  Flatty Templates  -  Index Page Templates  - Index



Scroll down to the bottom and find:

<div class="forums" style="float: left; width: 76%;">{$forums}</div>

Replace it by:

<div class="forums" style="float: left; width: 76%;">
    
    {$forums}
    
    <table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
        <tr>
          <td class="thead_2">
              <strong>{$lang->boardstats}</strong>
              <span class="float_right" style="padding-top: 3px;"><i class="fa fa-line-chart"></i></span>
          </td>
        </tr>
        <tr>
          <td class="trow1">
            {$forumstats}
          </td>
        </tr>
    </table>
    
</div>


4.1) Now you have to head to line ~50 and find

<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
    <tr>
        <td class="thead_2">
            <strong>Board Statistics</strong>
            <div class="float_right" style="padding-top: 3px;"><i class="fa fa-line-chart"></i></div>
        </td>
    </tr>
    <tr>
        <td class="trow1">
            {$forumstats}
        </td>
    </tr>
</table>

... and remove it if you don't need/want it anymore.

Thank you.

1- RESOLVED
2- RESOLVED (There was not the <navigation> in forumdisplay files and showthread) but it is okay !
3- The plugin will not work because it's just for one image. I managed to improve the "opacity" in global.css but I can not put my 2 images :
[Image: 2dbz.png]
[Image: t8rq.png]

4- i try

Thank you very much.
for the on/off  icons you must edit the  "forumbit_depth2_forum" template
go there and find 2nd line:
<td class="{$bgcolor}" align="center" width="1"><div class="forum_status forum_{$lightbulb['folder']} ajax_mark_read" title="{$lightbulb['altonoff']}" id="mark_read_{$forum['fid']}"><i class="fa fa-comments"></i></div></td>
 and replace with this:
<td class="{$bgcolor}" align="center" width="1"><span class="forum_status forum_{$lightbulb['folder']} ajax_mark_read" title="{$lightbulb['altonoff']}" id="mark_read_{$forum['fid']}"></span></td>


after maybe you should have a look to your css styles in global.css for the forum off,  forum on classes
(2016-03-02, 12:46 PM)subzr1 Wrote: [ -> ]for the on/off  icons you must edit the  "forumbit_depth2_forum" template
go there and find 2nd line:
<td class="{$bgcolor}" align="center" width="1"><div class="forum_status forum_{$lightbulb['folder']} ajax_mark_read" title="{$lightbulb['altonoff']}" id="mark_read_{$forum['fid']}"><i class="fa fa-comments"></i></div></td>
 and replace with this:
<td class="{$bgcolor}" align="center" width="1"><span class="forum_status forum_{$lightbulb['folder']} ajax_mark_read" title="{$lightbulb['altonoff']}" id="mark_read_{$forum['fid']}"></span></td>


after maybe you should have a look to your css styles in global.css for the forum off,  forum on classes

Okay, thank you.
with your modification, so I have no icon more on my forum :

[attachment=35887]

Now, How to add my 2 images "off" and "on" in my overall css?

Forum off :

[attachment=35889]

Forum on :

[attachment=35888]