SocialAcademy • Forum

Social Academy Community Support Forum & Free Tutorial's & Skins



[Answered] I Need Help...


    Go to page : 1, 2  Next

  • Please log in to Reply

View previous topic View next topic Go down  Message [Page 1 of 2]

#1

Offlinerosjoshuarecto

rosjoshuarecto
 
Advance Member
Advance Member

Posted Wed Sep 10, 2014 8:37 am

 
Details: i don't have any Who Is Online on the bottom of my forum
Screenshot: https://i.imgur.com/5unjIzy.png
Forum Address: http://forum.cybermix.cf/
Forum Version: PunBB

and i want this to be removed from visibility ===!> [Answered] I Need Help... HOlbb77

http://graphicsalliance.forumtl.com/
#2

OfflineGrafix

Grafix
 
Management Team
 Management Team

Posted Wed Sep 10, 2014 8:44 am

 

*
POPULAR

go to your Indexbody find and delete this
Code:
<!-- BEGIN switch_legend -->
    <ul id="pun-legend">
      <li>
          <img src="{FORUM_NEW_IMG}" alt="{L_NEW_POSTS}" /> {L_NEW_POSTS}
          <img src="{FORUM_IMG}" alt="{L_NO_NEW_POSTS}" /> {L_NO_NEW_POSTS}
          <img src="{FORUM_LOCKED_IMG}" alt="{L_FORUM_LOCKED}" /> {L_FORUM_LOCKED}
      </li>
    </ul>
    <!-- END switch_legend -->

https://socialacademy.forumotion.com
#3

OfflineGrafix

Grafix
 
Management Team
 Management Team

Posted Thu Sep 11, 2014 11:43 am

 

*
POPULAR

is this Answered?

https://socialacademy.forumotion.com
#4

Offlinerosjoshuarecto

rosjoshuarecto
 
Advance Member
Advance Member

Posted Thu Sep 11, 2014 2:05 pm

 
how about the WHO IS ONLINE ? the forum legend is solve now the first problem i got is how can i get my WHO IS ONLINE on the bottom of the forum as you see in my first screen shot i dont have it i only got the statistics

http://graphicsalliance.forumtl.com/
#5

OfflineGrafix

Grafix
 
Management Team
 Management Team

Posted Fri Sep 12, 2014 6:24 am

 
Give me your Indexbody ! thank you ..

https://socialacademy.forumotion.com
#6

Offlinerosjoshuarecto

rosjoshuarecto
 
Advance Member
Advance Member

Posted Fri Sep 12, 2014 12:07 pm

 
Code:

{JAVASCRIPT}
<!-- BEGIN message_admin_index -->
<div class="main">
   <!-- BEGIN message_admin_titre -->
   <div class="main-head">
      <h1 class="page-title">{message_admin_index.message_admin_titre.MES_TITRE}</h1>
   </div>
   <!-- END message_admin_titre -->

   <!-- BEGIN message_admin_txt -->
   <div id="pun-announcement">
      <p>{message_admin_index.message_admin_txt.MES_TXT}</p>
   </div>
   <!-- END message_admin_txt -->
</div>
<!-- END message_admin_index -->

<!-- BEGIN switch_user_login_form_header -->
<div class="main">
<form action="{S_LOGIN_ACTION}" method="post" name="form_login">
   <div class="user_login_form main-box center">
      <label><span class="genmed">{L_USERNAME} :</span> <input class="post" type="text" size="10" name="username" /></label>  
      <label><span class="genmed">{L_PASSWORD} :</span> <input class="post" type="password" size="10" name="password" /></label>  
      <label><span class="gensmall">{L_AUTO_LOGIN}</span> <input class="radio" type="checkbox" name="autologin" {AUTOLOGIN_CHECKED} /></label>  
      {S_HIDDEN_FIELDS}<input class="mainoption" type="submit" name="login" value="{L_LOGIN}" />
      <!-- BEGIN switch_fb_connect -->
      <span class="fb_or">{switch_user_login_form_header.switch_fb_connect.L_OR}</span>
      <fb:login-button size="large" onlogin="window.location='/facebook_connect.forum'" v="2" scope="{switch_user_login_form_header.switch_fb_connect.L_FB_PERMISSIONS}">{switch_user_login_form_header.switch_fb_connect.L_FB_LOGIN_BUTTON}</fb:login-button>
      <!-- END switch_fb_connect -->
   </div>
</form>
</div>
<!-- END switch_user_login_form_header -->

<div id="{ID_LEFT}" class="main">
  <div class="main-head">
      <div class="page-title">
        <h2>Latest Topic System v5</h2>
      </div>
  </div>
    <div class="main-content">
      <table cellspacing="0" class="table">
        <tbody class="statused">
            <!-- BEGIN giefmod_index1 -->
            {giefmod_index1.MODVAR}
            <!-- END giefmod_index1 -->
        </tbody>
      </table>
  </div>
  <script type="text/javascript">
      //<![CDATA[
      var versionMinor = parseFloat(navigator.appVersion),
        versionMajor = parseInt(versionMinor),
        IE = document.all && !window.opera && 7 > versionMajor,
        IE7 = document.all && !window.opera && 7 <= versionMajor,
        OP = window.opera,
        FF = document.getElementById,
        NS = document.layers;
 
      function get_item(a, c) {
        if (IE) return c ? window.opener.document.all[a] : document.all[a];
        if (FF) return c ? window.opener.document.getElementById(a) : document.getElementById(a);
        if (NS) return c ? window.opener.document.layers[a] : document.layers[a]
      }
 
      var current_tooltip;
 
      function show_tooltip(a, c) {
        var b = get_item("tooltip");
        b || (b = document.createElement("div"), b.setAttribute("id", "tooltip"), document.body.appendChild(b));
        b.style.zIndex = 1000;
        b.style.position = "absolute";
        b.innerHTML = "<p>" + c + "</p>";
        b.style.visibility = "visible";
        a.onmousemove = move_tooltip;
        a.onmouseout = function() {
            b.style.visibility = "hidden"
        };
        a.title = ""
      }
      var offsetxpoint = -60,
        offsetypoint = 20,
        real_body = document.compatMode && "BackCompat" != document.compatMode ? document.documentElement : document.body,
        real_body = document.documentElement ? document.documentElement : document.body;
 
      function move_tooltip(a) {
        var c = !IE ? a.pageX : event.clientX + real_body.scrollLeft,
            d = !IE ? a.pageY : event.clientY + real_body.scrollTop,
            b = IE && !window.opera ? real_body.clientWidth - event.clientX - offsetxpoint : window.innerWidth - a.clientX - offsetxpoint - 20,
            e = IE && !window.opera ? real_body.clientHeight - event.clientY - offsetypoint : window.innerHeight - a.clientY - offsetypoint - 20,
            f = 0 > offsetxpoint ? -1 * offsetxpoint : -1E3;
        current_tooltip = get_item("tooltip");
        current_tooltip.style.left = b < current_tooltip.offsetWidth ? IE ? real_body.scrollLeft + event.clientX - current_tooltip.offsetWidth + "px" : window.pageXOffset + a.clientX - current_tooltip.offsetWidth + "px" : c < f ? "5px" : c + offsetxpoint + "px";
        current_tooltip.style.top = e < current_tooltip.offsetHeight ? IE ? real_body.scrollTop + event.clientY - current_tooltip.offsetHeight - offsetypoint + "px" : window.pageYOffset + a.clientY - current_tooltip.offsetHeight - offsetypoint + "px" : d + offsetypoint + "px"
      }
      $("#recent_topics li a:first-child").mouseover(function() {
        show_tooltip(this, $(this).next().html())
      });
      $("#active_topics a, #viewed_topics a").mouseover(function() {
        show_tooltip(this, $(this).prev().text().replace(/(.*)\s-\s\d+.+/, "$1"));
      }).after(function() {
        return '<span class="lastRight">' + this.title.replace(/.*\s-\s(\d+.+)/, "$1") + '</span>'
      });
      $(".changeLast").change(function() {
        $(".half.group_" + $(this).data("group")).hide();
        $("#" + this.value).show();
      });
      //]]>
  </script>
</div>
</div>

{BOARD_INDEX}
<!-- BEGIN disable_viewonline -->
<div id='board_stats'>
  <ul class="ipsType_small ipsList_inline">

          <center>    <dl>
            <div id='board_statistics'><span class="FORUMCOUNTPOST"></span></div> Total Posts
            <div id='board_statistics'><span class='FORUMCOUNTUSER'></span></div> Total Members 
            <div id='board_statistics'><span class='FORUMLASTUSERLINK'></span></div>  Newest Member
            <div id='board_statistics'><span class='FORUMCOUNTOPIC'></span></div>  Most Online
            </dl></center>
  </ul>
  </div>


<div id="board_statistics2" class="statistics clearfix">
   
  <h4 class="statistics_head clearfix"><ul id="stat_links" class="ipsList_inline right ipsType_small">
            
   </ul>
{TOTAL_USERS}</h4>
   <div class="staticsipb"><p class="statistics_brief desc">
      {NEWEST_USER}
            <a href="/viewonline">(See full list)</a>
   </p>
      <br>
                  <p>{TOTAL_USERS_ONLINE}</p></div>

</div>
 
<!-- END disable_viewonline -->

<!-- BEGIN switch_user_login_form_footer -->
<form action="{S_LOGIN_ACTION}" method="post" name="form_login">
   <div class="user_login_form main-box center">
      <label><span class="genmed">{L_USERNAME} :</span> <input class="post" type="text" size="10" name="username"/></label>  
      <label><span class="genmed">{L_PASSWORD} :</span> <input class="post" type="password" size="10" name="password"/></label>  
      <label><span class="gensmall">{L_AUTO_LOGIN}</span> <input class="radio" type="checkbox" name="autologin" {AUTOLOGIN_CHECKED} /></label>  
      {S_HIDDEN_FIELDS}<input class="mainoption" type="submit" name="login" value="{L_LOGIN}" />
      <!-- BEGIN switch_fb_connect -->
      <span class="genmed fb_or">{switch_user_login_form_footer.switch_fb_connect.L_OR}</span>
      <fb:login-button size="large" onlogin="window.location='/facebook_connect.forum'" v="2" scope="{switch_user_login_form_footer.switch_fb_connect.L_FB_PERMISSIONS}">{switch_user_login_form_footer.switch_fb_connect.L_FB_LOGIN_BUTTON}</fb:login-button>
      <!-- END switch_fb_connect -->
   </div>
</form>
<!-- END switch_user_login_form_footer -->

{CHATBOX_BOTTOM}

  <br /><br />
<div style="background:#dddddd url('http://images.webestools.com/rounded_corn.php?rayon=20&fond=ffffff&interieur=dddddd&rotation=0') no-repeat top left;">
<div style="background:url('http://images.webestools.com/rounded_corn.php?rayon=20&fond=ffffff&interieur=dddddd&rotation=3') no-repeat top right;">
<div style="background:url('http://images.webestools.com/rounded_corn.php?rayon=20&fond=ffffff&interieur=dddddd&rotation=1') no-repeat bottom left;">
<div style="background:url('http://images.webestools.com/rounded_corn.php?rayon=20&fond=ffffff&interieur=dddddd&rotation=2') no-repeat bottom right;padding-bottom:15px;padding-top:15px;padding-left:10px;">
<font face="arial">
<Strong>
<style type="text/css">a {text-decoration: none}</style>
<center>

<i>The Cybermix Moderation Teams</i>: <a href="http://forum.cybermix.cf/g1-management-officer"><font color="#FF0000">Management Officer</font></a>  •  <a href="http://forum.cybermix.cf/g2-manager"><font color="#FF0000">Manager</font></a>  •  <a href="http://forum.cybermix.cf/g3-powered-moderator"><font color="#00FFF2">Powered Moderator</font></a>  •  <a href="http://forum.cybermix.cf/g4-assistance-moderator"><font color="#000DFF">Assistant Moderator</font></a>  • &nbsp;<a href="http://forum.cybermix.cf/g6-gfx-designer-team"><font color="#2BFF00">GFX Designer Team</font></a>

</center>
</strong>
</font>
</div></div></div></div>
 
{AUTO_DST}

<!-- BEGIN switch_fb_index_login -->
<div id="fb-root"></div>
<script type="text/javascript">
//<![CDATA[
FB.init({
   appId: '{switch_fb_index_login.FACEBOOK_APP_ID}',
    status: true,
    cookie: true,
    xfbml: true,
   oauth: true
});
//]]>
</script>
<!-- END switch_fb_index_login -->

thanks in advance Red™ you rock men :D

http://graphicsalliance.forumtl.com/
#7

Offlinerosjoshuarecto

rosjoshuarecto
 
Advance Member
Advance Member

Posted Fri Sep 12, 2014 12:10 pm

 
i have a question....

can u edit my button statistics like this ? please cuz its simple and cool please [tag]Red™[/tag]

https://i.imgur.com/Q7z3tVS.png

thanks if this will be approved :)

http://graphicsalliance.forumtl.com/
#8

Offlinerosjoshuarecto

rosjoshuarecto
 
Advance Member
Advance Member

Posted Sat Sep 13, 2014 1:54 am

 
BUMP :)

http://graphicsalliance.forumtl.com/
#9

Offlinerosjoshuarecto

rosjoshuarecto
 
Advance Member
Advance Member

Posted Sun Sep 14, 2014 10:36 am

 
BUMP!

http://graphicsalliance.forumtl.com/
#10

Offlinerosjoshuarecto

rosjoshuarecto
 
Advance Member
Advance Member

Posted Sun Sep 14, 2014 11:32 pm

 
Hello ?

http://graphicsalliance.forumtl.com/
#11

OfflineSponsored content


 

Posted

 

Message (Page 1 of 2)


    Go to page : 1, 2  Next


Share Topics Url

Url
BBcode
HTML

Permissions in this forum:
You cannot reply to topics in this forum

 
  • Free forum | ©phpBB | Free forum support | Report an abuse | Forumotion.com


Social Academy Forum
© Social Academy 2013-2022