Following? There is already a follow member feature for profile. This plugin will simply add another way to communicate with the member which is send an email, in addition to the existing private message.
New version will add a moderator permission to manage questions & answers:
It will also introduce 2 new type of quizzes. One them is MULTIPLE RIGHT ANSWERS quiz:
- Playing:
I'm not sure I understand what you mean. What do you want exactly? Only the author to manage? If so, open applications/quizzes/sources/Quiz/Quiz.php and find:
/**
* Can manage questions & answers?
*
* @param \IPS\Member\NULL $member The member (NULL for currently logged in member)
* @return bool
*/
public function canManageQuestions( $member=NULL )
{
$member = $member ?: \IPS\Member::loggedIn();
if ( !$member->member_id OR $this->locked() )
{
return FALSE;
}
return ( $member->member_id == $this->author()->member_id ) or parent::canEdit( $member );
}
Change to:
/**
* Can manage questions & answers?
*
* @param \IPS\Member\NULL $member The member (NULL for currently logged in member)
* @return bool
*/
public function canManageQuestions( $member=NULL )
{
$member = $member ?: \IPS\Member::loggedIn();
if ( !$member->member_id OR $this->locked() )
{
return FALSE;
}
return ( $member->member_id == $this->author()->member_id );
}
Correcting, now that I see the code: only the author and those who can edit the quiz can manage questions and answers. You can because you are a unrestricted moderator.
About This File
This plugin will give members the ability to follow specific user content from other members. This will make the user to receive only notifications of content of interest.
I can add a new field in the note form (and a new module to add its types: warning, accolade, etc.) that will act like a filter to separate notes in the notes listing but it won’t a “real” category feature. That would require a total rewrite of this resource and it wouldn’t cost only $15 for sure.
@Luke Hickton
Open the ACP -> Customization -> click in Edit HTML & CSS of your theme -> Find Quizzes in the app list in Templates tab -> front -> view -> resultQuiz -> Find:
<td>{lang="{$feedbackText}"}</td>
Change to:
<td style='white-space:normal;'>{lang="{$feedbackText}"}</td>
Find:
<span class="ipsDataItem_generic">{lang="{$feedbackText}"}</span>
Change to:
<span class="ipsDataItem_generic" style='white-space:normal;'>{lang="{$feedbackText}"}</span>
Save the template.
That will go from:
to:
As this isn't enough to release a new version (isn't crashing the app, etc.), it will be fixed in the next one.
This is a temporary fix.
What's New in Version 1.2.4:
New Feature:
Added ability to follow club and its features
Due to not require membership, only Public and ReadOnly clubs will be allowed to be automatically followed by new members
Fix:
Fix a typo on a language bit
Was it just a test? It's fixed but as it is a post content, once is done, there's no way to redo.
If it was just a test, I'll release a new version now. Otherwise, will have to waste some time to make a routine to rebuild the post.