1

Topic: Show specific Category via View/Hide Category PunBB Mod

Greetings. I am using the nice View/Hide Category PunBB Mod here:

http://www.punres.org/desc.php?pid=40
http://www.punres.org/files/projects/pr … readme.txt

I want to create copies of the index.php for all my Categories which will display only one Category at a time. If I mark only the first Category visible via this MOD, index.php shows only this first Category, which is fine. But I want another page which shows only the second Category and another page which shows only the third Category and so on. Is this possible by using your MOD. Please help. Thanks in advance.

Re: Show specific Category via View/Hide Category PunBB Mod

This can be solved by storing the information in cookies. But you will have to mod the mod first. neutral

Re: Show specific Category via View/Hide Category PunBB Mod

You may hard-code category-id into index.php.
Modify this line: line 42 from

WHERE fp.read_forum IS NULL OR fp.read_forum=1

to

WHERE c.id = <category_id> AND (fp.read_forum IS NULL OR fp.read_forum=1)

And create as many index.php copies as many <category_id> values you have.

Carpe diem