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.

Is there a way to change this? - Forum category issue

+4
Draxion
SLGray
skouliki
SpyroDragon
8 posters

Page 2 of 2 Previous  1, 2

Go down

In progress Is there a way to change this? - Forum category issue

Post by SpyroDragon Wed 11 Sep - 11:58

First topic message reminder :

At the moment im having this issue..
phpBB2 - Is there a way to change this? - Forum category issue - Page 2 1a10

I would like for it to look like this...( it's photoshoped )
phpBB2 - Is there a way to change this? - Forum category issue - Page 2 2a10


I can't seem to figure out what the problem is nor how to fix or where to fix it.
SpyroDragon
SpyroDragon
Forumember

Posts : 455
Reputation : 2
Language : English

http://tlos.forumotion.net/

Back to top Go down


In progress Re: Is there a way to change this? - Forum category issue

Post by skouliki Wed 2 Oct - 9:19

SLGray wrote:You should not have categories attached to categories.  You can have forums attached to forums.

do you have categories attaches to categories? if yes this is your problem
skouliki
skouliki
Manager
Manager

Female Posts : 15061
Reputation : 1690
Language : English,Greek
Location : Greece

http://iconskouliki.forumgreek.com

Back to top Go down

In progress Re: Is there a way to change this? - Forum category issue

Post by SpyroDragon Fri 4 Oct - 5:12

So are you telling me there is no way to hide?
SpyroDragon
SpyroDragon
Forumember

Posts : 455
Reputation : 2
Language : English

http://tlos.forumotion.net/

Back to top Go down

In progress Re: Is there a way to change this? - Forum category issue

Post by SLGray Fri 4 Oct - 5:56

If you hide it, how would your members access those areas?


phpBB2 - Is there a way to change this? - Forum category issue - Page 2 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 : 51464
Reputation : 3519
Language : English
Location : United States

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

Back to top Go down

In progress Re: Is there a way to change this? - Forum category issue

Post by SpyroDragon Sat 5 Oct - 3:15

it seems like what I want is not obtainable at this point, and will just have to change the organization in some way.
SpyroDragon
SpyroDragon
Forumember

Posts : 455
Reputation : 2
Language : English

http://tlos.forumotion.net/

Back to top Go down

In progress Re: Is there a way to change this? - Forum category issue

Post by SixtyCents Wed 23 Oct - 18:11

Ohh, I have similar problem! Thanks for information guys!!


Last edited by SixtyCents on Wed 6 Nov - 17:01; edited 1 time in total
SixtyCents
SixtyCents
New Member

Posts : 1
Reputation : 1
Language : UK

https://help.forumotion.com

Back to top Go down

In progress Re: Is there a way to change this? - Forum category issue

Post by TheCrow Thu 24 Oct - 22:41

Hello @SpyroDragon,

These categories can be hidden. Although the question after this will be the one SLGray said. Will your members have access to those categories otherwise? Because if they can't access them somewhere else this would be a problem in the future.

TC.
TheCrow
TheCrow
Manager
Manager

Male Posts : 6898
Reputation : 794
Language : Greek, English

https://forumote.forumotion.com

Back to top Go down

In progress Re: Is there a way to change this? - Forum category issue

Post by SpyroDragon Fri 25 Oct - 10:19

Lets try a code and well see what happens
SpyroDragon
SpyroDragon
Forumember

Posts : 455
Reputation : 2
Language : English

http://tlos.forumotion.net/

Back to top Go down

In progress Re: Is there a way to change this? - Forum category issue

Post by TheCrow Fri 25 Oct - 11:10

To try this code, I will need to test some codes in your forum because you are using #phpbb2 version, so the tables in there are a little bit strange to code.

If you could send me please, a test account via pm, and the link of the category you wish this to change it'd be helpful.

Regards,
TC.
TheCrow
TheCrow
Manager
Manager

Male Posts : 6898
Reputation : 794
Language : Greek, English

https://forumote.forumotion.com

Back to top Go down

In progress Re: Is there a way to change this? - Forum category issue

Post by SpyroDragon Tue 5 Nov - 14:56

Sent you a PM with info
SpyroDragon
SpyroDragon
Forumember

Posts : 455
Reputation : 2
Language : English

http://tlos.forumotion.net/

Back to top Go down

In progress Re: Is there a way to change this? - Forum category issue

Post by TheCrow Sat 9 Nov - 17:09

Hello @SpyroDragon,

Try adding this javascript in your javascript list:
Placement: In the subforums
Code:
Code:
$(function(){
  $('table.forumline:contains("ARK: Buying & Trading")').remove();
});

This removes the certain subforum you presented. Not all of them.

Regards,
TC.
TheCrow
TheCrow
Manager
Manager

Male Posts : 6898
Reputation : 794
Language : Greek, English

https://forumote.forumotion.com

Back to top Go down

In progress Re: Is there a way to change this? - Forum category issue

Post by SpyroDragon Sat 9 Nov - 18:22

It gets rid of everything
SpyroDragon
SpyroDragon
Forumember

Posts : 455
Reputation : 2
Language : English

http://tlos.forumotion.net/

Back to top Go down

In progress Re: Is there a way to change this? - Forum category issue

Post by TheCrow Sat 9 Nov - 18:38

It gets rid of the entire table containing the subforums, yes.
TheCrow
TheCrow
Manager
Manager

Male Posts : 6898
Reputation : 794
Language : Greek, English

https://forumote.forumotion.com

Back to top Go down

In progress Re: Is there a way to change this? - Forum category issue

Post by SpyroDragon Sat 9 Nov - 19:09

SpyroDragon
SpyroDragon
Forumember

Posts : 455
Reputation : 2
Language : English

http://tlos.forumotion.net/

Back to top Go down

In progress Re: Is there a way to change this? - Forum category issue

Post by TheCrow Sun 10 Nov - 13:41

CSS:
Code:
.myClass tr:nth-child(3), .myClass tr:nth-child(4), .myClass tr:nth-child(5), .myClass tr:nth-child(6) { display: none }

Javascript:
Code:
$(function(){
  $('table.forumline:contains("ARK: Buying & Trading")').addClass('myClass');
});
TheCrow
TheCrow
Manager
Manager

Male Posts : 6898
Reputation : 794
Language : Greek, English

https://forumote.forumotion.com

Back to top Go down

In progress Re: Is there a way to change this? - Forum category issue

Post by SpyroDragon Sat 16 Nov - 10:10

That one seemed to not do anything
SpyroDragon
SpyroDragon
Forumember

Posts : 455
Reputation : 2
Language : English

http://tlos.forumotion.net/

Back to top Go down

In progress Re: Is there a way to change this? - Forum category issue

Post by TheCrow Sun 17 Nov - 20:30

Have you tried adding !important to the CSS code?
TheCrow
TheCrow
Manager
Manager

Male Posts : 6898
Reputation : 794
Language : Greek, English

https://forumote.forumotion.com

Back to top Go down

Page 2 of 2 Previous  1, 2

Back to top


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