The forum of the forums
Would you like to react to this message? Create an account in a few clicks or log in to continue.

How to hide some of the general stuff

4 posters

Go down

In progress How to hide some of the general stuff

Post by Spyro Dragon™ March 8th 2014, 11:11 pm

How to hide some of the general stuff Cynder10
How to hide some of the general stuff Thison12How to hide some of the general stuff Thison11

How to hide some of the general stuff Thison10


everything in red box...  Remove please


Now that I think of it..i also want the legend on the main page gone as well...thanks


Last edited by Spyro Dragon™ on March 9th 2014, 2:50 pm; edited 1 time in total
Spyro Dragon™
Spyro Dragon™
Forumember

Male Posts : 202
Reputation : 2
Language : English

http://SpyroDragon.com

Back to top Go down

In progress Re: How to hide some of the general stuff

Post by SLGray March 9th 2014, 1:44 am

Please change the title of your topic to something that is related to your question/issue, so that other users will be able to find their question/issue using the search engine.


How to hide some of the general stuff Slgray10

When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
SLGray
SLGray
Administrator
Administrator

Male Posts : 51463
Reputation : 3519
Language : English
Location : United States

https://forumsclub.com/gc/128-link-directory/

Back to top Go down

In progress Re: How to hide some of the general stuff

Post by Spyro Dragon™ March 9th 2014, 2:50 pm

I don't really know what to name it
Spyro Dragon™
Spyro Dragon™
Forumember

Male Posts : 202
Reputation : 2
Language : English

http://SpyroDragon.com

Back to top Go down

In progress Re: How to hide some of the general stuff

Post by Spyro Dragon™ March 10th 2014, 8:50 pm

Bump
Spyro Dragon™
Spyro Dragon™
Forumember

Male Posts : 202
Reputation : 2
Language : English

http://SpyroDragon.com

Back to top Go down

In progress Re: How to hide some of the general stuff

Post by SLGray March 11th 2014, 12:56 am

So for the memberlist page, you only want a list of usernames?


How to hide some of the general stuff Slgray10

When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
SLGray
SLGray
Administrator
Administrator

Male Posts : 51463
Reputation : 3519
Language : English
Location : United States

https://forumsclub.com/gc/128-link-directory/

Back to top Go down

In progress Re: How to hide some of the general stuff

Post by Spyro Dragon™ March 11th 2014, 1:18 am

Yea, and perhaps Centerd as well if that's possible  too.
Spyro Dragon™
Spyro Dragon™
Forumember

Male Posts : 202
Reputation : 2
Language : English

http://SpyroDragon.com

Back to top Go down

In progress Re: How to hide some of the general stuff

Post by Ange Tuteur March 11th 2014, 1:26 am

Hello Spyro Dragon™,

For the memberlist :
Administration panel > display > templates > general > memberlist_body

Find and remove :
Code:
<form action="{S_MODE_ACTION}" method="get">
<table cellspacing="0" cellpadding="5" border="0" align="center" class="forumline" width="100%">
 <tr>
 <th class="thTop" nowrap="nowrap">{L_ORDER_OR_SELECT}</th>
 </tr>
 <tr>
 <td class="row1">
 <table cellspacing="2" cellpadding="0" border="0" align="center" class="genmed">
 <tr>
 <td width="100%">{L_USER_SELECT} <input type="text" class="post" name="username" maxlength="25" size="20" value="{L_USER_SELECT_VALUE}" />      
 {L_SELECT_SORT_METHOD} {S_MODE_SELECT}      
 {L_ORDER} {S_ORDER_SELECT}      
 {S_HIDDEN_SID}
 <input class="liteoption" type="submit" name="submit" value="{L_SUBMIT}" /></td>
 </tr>
 </table>
 </td>
 </tr>
</table>
</form>

Find and remove :
Code:
<tr>
 <th class="thCornerL" nowrap="nowrap" height="25">#</th>
 <th class="thTop" nowrap="nowrap">{L_AVATAR}</th>
 <th class="thTop" nowrap="nowrap">{L_USERNAME}</th>
 <!-- BEGIN switch_th_group -->
 <th class="thTop" nowrap="nowrap">{L_GROUPS}</th>
 <!-- END switch_th_group -->
 <th class="thTop" nowrap="nowrap">{L_INTERESTS}</th>
 <th class="thTop" nowrap="nowrap">{L_JOINED}</th>
 <th class="thTop" nowrap="nowrap">{L_VISITED}</th>
 <th class="thTop" nowrap="nowrap">{L_POSTS}</th>
 <th class="thTop" nowrap="nowrap">{L_PM}</th>
 <th class="thCornerR" nowrap="nowrap">{L_WEBSITE}</th>
 </tr>

Find :
Code:
<!-- BEGIN memberrow -->
 <tr>
 <td class="{memberrow.ROW_CLASS}" align="center"><span class="gen"> {memberrow.ROW_NUMBER} </span></td>
 <td class="{memberrow.ROW_CLASS}" align="center"><div class="avatar mini"><a href="{memberrow.U_VIEWPROFILE}">{memberrow.AVATAR_IMG}</a></div></td>
 <td class="{memberrow.ROW_CLASS}" align="center"><span class="gen"><a class="gen" href="{memberrow.U_VIEWPROFILE}">{memberrow.USERNAME}</a></span></td>
 <!-- BEGIN switch_td_group -->
 <td class="{memberrow.ROW_CLASS}" align="center"><span class="gen">{memberrow.GROUPS}</span></td>
 <!-- END switch_td_group -->
 <td class="{memberrow.ROW_CLASS}" align="center" valign="middle"><span class="gen">{memberrow.INTERESTS}</span></td>
 <td class="{memberrow.ROW_CLASS}" align="center" valign="middle"><span class="gensmall">{memberrow.JOINED}</span></td>
 <td class="{memberrow.ROW_CLASS}" align="center" valign="middle"><span class="gensmall">{memberrow.LASTVISIT}</span></td>
 <td class="{memberrow.ROW_CLASS}" align="center" valign="middle"><span class="gen">{memberrow.POSTS}</span></td>
 <td class="{memberrow.ROW_CLASS}" align="center"> {memberrow.PM_IMG} </td>
 <td class="{memberrow.ROW_CLASS}" align="center"> {memberrow.WWW_IMG} </td>
 </tr>
 <!-- END memberrow -->

replace by :
Code:
<!-- BEGIN memberrow -->
 <tr>
 <td class="{memberrow.ROW_CLASS}" align="center"><span class="gen"><a class="gen" href="{memberrow.U_VIEWPROFILE}">{memberrow.USERNAME}</a></span></td>
 </tr>
 <!-- END memberrow -->

Save and publish the template.
Ange Tuteur
Ange Tuteur
Forumaster

Male Posts : 13246
Reputation : 3000
Language : English & 日本語
Location : Pennsylvania

https://fmdesign.forumotion.com

Back to top Go down

In progress Re: How to hide some of the general stuff

Post by Spyro Dragon™ March 11th 2014, 2:33 pm

How to hide some of the general stuff Gotopa10
1. Page 1 of 3
2. Go to page
3. can  you move the 1,2,3  in the center as well?  just the numbers though, not the  "  go to page " , if you cant get rid of the " go to page"  then tell me how to move the whole  thing over ther.


And Ange  Tuter, " Dang your good "  lol I wanted to know how to do this a few years ago and everyone said it was impossible and no one knew how to do it. thanks  hope im not making you work to hard.

I used Paint, so I don't acualy have numbers in the center , sorry if any of you get confused over  that.
Spyro Dragon™
Spyro Dragon™
Forumember

Male Posts : 202
Reputation : 2
Language : English

http://SpyroDragon.com

Back to top Go down

In progress Re: How to hide some of the general stuff

Post by Ange Tuteur March 13th 2014, 2:25 am

To edit the pagination :
Administration panel > display > templates > general > memberlist_body

Find :
Code:
<!-- BEGIN switch_pagination -->
<table width="100%" border="0" cellspacing="0" cellpadding="0">
 <tr>
 <td><span class="nav">{PAGE_NUMBER}</span></td>
 <td align="right"><span class="nav">{PAGINATION}</span></td>
 </tr>
</table>
<br />
<!-- END switch_pagination -->

Replace by :
Code:
<!-- BEGIN switch_pagination -->
<table width="100%" border="0" cellspacing="0" cellpadding="0">
 <tr>
 <td align="center"><span class="nav">{PAGINATION}</span></td>
 </tr>
</table>
<br />
<!-- END switch_pagination -->

I couldn't test preview since my test forum doesn't have a large list, but it should be what you want. For go to page, it looks like it is in the pagination variable so that would have to be remove by another means.
Ange Tuteur
Ange Tuteur
Forumaster

Male Posts : 13246
Reputation : 3000
Language : English & 日本語
Location : Pennsylvania

https://fmdesign.forumotion.com

Back to top Go down

In progress Re: How to hide some of the general stuff

Post by Spyro Dragon™ March 14th 2014, 1:53 am

That's solved, now what about screenshot 2 , 3 and 4 ?
Spyro Dragon™
Spyro Dragon™
Forumember

Male Posts : 202
Reputation : 2
Language : English

http://SpyroDragon.com

Back to top Go down

In progress Re: How to hide some of the general stuff

Post by Ange Tuteur March 14th 2014, 7:16 am

For the second and third screenshots :
Administration panel > display > templates > general > topics_list_box

Find and remove :
Code:
      <th colspan="{topics_list_box.row.header_table.COLSPAN}" align="center" nowrap="nowrap"> {topics_list_box.row.L_TITLE} </th>
      <th align="center" nowrap="nowrap" width="100"> {topics_list_box.row.L_AUTHOR} </th>

Save an publish.

Then :
Templates > general > viewforum_body

Find and remove :
Code:
      <td class="nav" valign="middle" width="100%"><div class="nav"><a class="nav" href="{U_INDEX}">{L_INDEX}</a>{NAV_CAT_DESC}</div></td>
      <td class="gensmall" align="right" valign="bottom" nowrap="nowrap">
         <span class="nav">
            <script type="text/javascript">//<![CDATA[
               var url_newposts = '{U_NEWPOSTS_JS_PLUS_MENU}';
               var url_egosearch = '{U_EGOSEARCH_JS_PLUS_MENU}';
               var url_unanswered = '{U_UNANSWERED_JS_PLUS_MENU}';
               var url_watchsearch = '{U_WATCHSEARCH_JS_PLUS_MENU}';
               var url_tellfriend = '{U_TELLFRIEND_JS_PLUS_MENU}';
               insert_plus_menu('f{FORUM_ID}&amp;f={FORUM_ID}','{JS_SESSION_ID}', {JS_AUTH_FAVOURITES});
            //]]>
            </script>
         </span>
      </td>

Find :
Code:
   <form action="{S_JUMPBOX_ACTION}" method="get" name="jumpbox" onsubmit="if(document.jumpbox.f.value == -1){return false;}">
<table width="100%" border="0" cellspacing="2" cellpadding="0" align="center">
   <tr>

         <td align="left" valign="middle" width="50">
            <!-- BEGIN switch_user_logged_in -->
            <a href="{U_POST_NEW_TOPIC}" rel="nofollow"><img src="{POST_IMG}" id="{POST_IMG_ID}1" alt="{L_POST_NEW_TOPIC}" border="0" /></a>
            <!-- END switch_user_logged_in -->
         </td>
         <td align="right" nowrap="nowrap"><span class="gensmall">{L_JUMP_TO}: {S_JUMPBOX_SELECT} <input class="liteoption" type="submit" value="{L_GO}" /></span></td>

   </tr>
</table>
      </form>

Replace by :
Code:
<table width="100%" border="0" cellspacing="2" cellpadding="0" align="center">
   <tr>
         <td align="left" valign="middle" width="50">
            <!-- BEGIN switch_user_logged_in -->
            <a href="{U_POST_NEW_TOPIC}" rel="nofollow"><img src="{POST_IMG}" id="{POST_IMG_ID}1" alt="{L_POST_NEW_TOPIC}" border="0" /></a>
            <!-- END switch_user_logged_in -->
         </td>
   </tr>
</table>

Then save and publish.
Ange Tuteur
Ange Tuteur
Forumaster

Male Posts : 13246
Reputation : 3000
Language : English & 日本語
Location : Pennsylvania

https://fmdesign.forumotion.com

Back to top Go down

In progress Re: How to hide some of the general stuff

Post by Spyro Dragon™ March 14th 2014, 7:45 pm

How to hide some of the general stuff Thison13
Spyro Dragon™
Spyro Dragon™
Forumember

Male Posts : 202
Reputation : 2
Language : English

http://SpyroDragon.com

Back to top Go down

In progress Re: How to hide some of the general stuff

Post by Spyro Dragon™ March 18th 2014, 12:27 am

Bump
Spyro Dragon™
Spyro Dragon™
Forumember

Male Posts : 202
Reputation : 2
Language : English

http://SpyroDragon.com

Back to top Go down

In progress Re: How to hide some of the general stuff

Post by Kite Trojan March 18th 2014, 12:38 am

You want to remove that?
Kite Trojan
Kite Trojan
Forumember

Male Posts : 823
Reputation : 19
Language : English

http://galacticda.forumotion.com/

Back to top Go down

In progress Re: How to hide some of the general stuff

Post by Ange Tuteur March 18th 2014, 1:47 pm

Sorry I had forgot since I was busy. Embarassed

For the last screenshot :
Administration panel > display > templates general > index_box

Find and remove (it's at top):
Code:
<table width="100%" border="0" cellspacing="1" cellpadding="0" align="center">
   <tr>
      <td valign="bottom">
         <!-- BEGIN switch_user_logged_in -->
         <span class="gensmall">{LAST_VISIT_DATE}<br />
         {CURRENT_TIME}<br />
         </span>
         <!-- END switch_user_logged_in -->
         <div class="nav"><a class="nav" href="{U_INDEX}">{L_INDEX}</a>{NAV_CAT_DESC}</div>
      </td>
      <td class="gensmall" align="right" valign="bottom">
         <!-- BEGIN switch_user_logged_in -->
         <a class="gensmall" href="{U_SEARCH_NEW}">{L_SEARCH_NEW}</a><br />
         <a class="gensmall" href="{U_SEARCH_SELF}">{L_SEARCH_SELF}</a><br />
         <!-- END switch_user_logged_in -->
         <a class="gensmall" href="{U_SEARCH_UNANSWERED}">{L_SEARCH_UNANSWERED}</a>
      </td>
   </tr>
</table>

find and remove :
Code:
      <th colspan="{catrow.tablehead.INC_SPAN}" nowrap="nowrap" width="100%" class="secondarytitle"> {catrow.tablehead.L_FORUM} </th>

save and publish.
Ange Tuteur
Ange Tuteur
Forumaster

Male Posts : 13246
Reputation : 3000
Language : English & 日本語
Location : Pennsylvania

https://fmdesign.forumotion.com

Back to top Go down

In progress Re: How to hide some of the general stuff

Post by Spyro Dragon™ March 18th 2014, 9:40 pm

How to hide some of the general stuff Hi10
Spyro Dragon™
Spyro Dragon™
Forumember

Male Posts : 202
Reputation : 2
Language : English

http://SpyroDragon.com

Back to top Go down

In progress Re: How to hide some of the general stuff

Post by Ange Tuteur March 18th 2014, 9:45 pm

I posted how to remove that in my previous response. (first code)

If you cannot find it, look for this :
Code:
<a class="gensmall" href="{U_SEARCH_UNANSWERED}">{L_SEARCH_UNANSWERED}</a>
Ange Tuteur
Ange Tuteur
Forumaster

Male Posts : 13246
Reputation : 3000
Language : English & 日本語
Location : Pennsylvania

https://fmdesign.forumotion.com

Back to top Go down

In progress Re: How to hide some of the general stuff

Post by Spyro Dragon™ March 21st 2014, 7:48 am

ok that's fixed, now how to get rid of the same things on Advanced Search? its gone, but when you do advanced Search everything is still ther  The Time and date, the Auther , the last post, And theres thin black line border :S
Spyro Dragon™
Spyro Dragon™
Forumember

Male Posts : 202
Reputation : 2
Language : English

http://SpyroDragon.com

Back to top Go down

Back to top

- Similar topics

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