::bumping since two days, and made post abit more clear. apologies::Valace wrote:Fantastic MOD, LOVE IT.. nice one!
Two question if you do not mind please
1. Is it possable not to display Special/Pre-defined groups?
2. Create a link so users can join the group? Users on my forum not allowed to view profile so not sure if that be a problem?
Question 2 not so important just a bonus!
Thanks and gratz on a very special mod again
The one that I have entered in my profile works. Link is at the bottom of the forum.Pietje15 wrote:Any demo board?
Code: Select all
$sql_where = " WHERE group_name <> 'GUESTS'";
Code: Select all
$sql_where = " WHERE group_name != 'GUESTS' AND group_type != " . GROUP_SPECIAL;
A BIG BIG BIG thank you, your a scholar and gentlemanRMcGirr83 wrote:Sorry about that, never got an email that there was a reply to the topic, ANYWAY
The one that I have entered in my profile works. Link is at the bottom of the forum.Pietje15 wrote:Any demo board?
Ah heck, see the attached
Valace,
For your first request you can try this
OPEN
groups_page.php
FIND
REPLACE WITHCode: Select all
$sql_where = " WHERE group_name <> 'GUESTS'";
haven't tested it though.Code: Select all
$sql_where = " WHERE group_name != 'GUESTS' AND group_type != " . GROUP_SPECIAL;
As far as number 2, I'm just too busy these days to look at that right now, sorry.
Code: Select all
$sql_where = " WHERE group_name != 'GUESTS' AND group_type != " . GROUP_SPECIAL . " AND group_type != " . GROUP_HIDDEN;