R_J
AdminR_J Admin
-
Re: Displaying Reaction Points Total in Discussions Archive
If I remember it right, a subselect is not possible. But you can create a view with hard coded SQL and use that later on with the query builder (View Post)2 -
Re: Mix of Tags and Categories functionality – not sure how to proceed!
You shouldn't modify any file at all ;) Instead you would have to create your own theme. Create following files: /themes/YourThemeName/about.php /themes/YourThemeName/views/categories/all.php Take a … (View Post)1 -
Re: Discussion viewable only by certain group members
If you join the table usergroup by the group id and add a where user = current user to it, you should get all discussion for the current users group id $Sender->SQL->Join('UserGroup ug', 'ug.Gr… (View Post)2 -
Re: Discussion viewable only by certain group members
You are catching the BeforeGet event and before you get anything, there couldn't be an EventArgument "Discussion" ;) Look at the function Get inside class.discussionmodel.php where that eve… (View Post)4 -
Re: Mix of Tags and Categories functionality – not sure how to proceed!
There is now way to achieve that just with configuration. You would have to come up with custom views. Have you tried creating a view by yourself, too? (View Post)1
