Jump to content

Douglas Glover

Clients
  • Posts

    57
  • Joined

  • Last visited

Reputation Activity

  1. Thanks
    Douglas Glover reacted to Marc Stridgen in Feature Requests for Badges/Achievements/Ranks   
    We do not show roadmaps at the present time. Any information related to changes on the product will be shown in blogs, or indeed in release notes. However I do have comments on some of those
    This is already possible. You can manually add badges from the admin CP. Go to any member, and on the badges section, click on manage
    Other than the method above for admin, this is not Something in which is likely ever to be added, as it simply goes against the intention of the system
    This is already available. If you go to any users profile, you will see badges at the top in the "Your achievements" section. You can also click into that which will give you a full list and count
     
  2. Like
    Douglas Glover got a reaction from konon in Feature Requests for Badges/Achievements/Ranks   
    I have a small list of requests specific to this feature. Can you let me know if any of this is on the roadmap, or in general will/may be implemented, or if there exists a solution to any of them?
    Ability to award Badges to an individual without needing to tie it to a specific post, and/or the ability to award multiple Badges at once. My community is a group of video game collectors. As such we've based a bunch of manually-awarded badges around stuff like "Has collected X games for System Y". We've implemented a "Badge request" thread, wherein users make a post and provide proof, e.g. a photo, so we know who to award what Badges. In the current system we need to go get random posts from each user whenever they request more than one Badge, and/or request that they do 1 post per request. This is quite cumbersome as-is. Descriptions per Badge. Right now all we can do is a title and icon. It'd be great if we could also have a description on each Badge so people know why they were granted the Badge (ignoring the "message" option - sometimes people will see a Badge on a user profile and be curious of how to earn it themselves. I see that there's a roundabout what to do this with the message, but that's a lot of clicks which aren't necessarily obvious to a user. Ability to award Badges to oneself. Staff members for instance could save me personally a lot of time by handing out their own badges to themselves. Similarly, I as an admin should be able to add the "Has a gaming tattoo" to myself, without having to ask another member of staff to do it for me. Ability to see a number of earned Badges on posts (if perhaps even only on desktop).  The old trophy system which I had to purchase to use had this, and it's a missed feature. Right now people have to dig into a user profile who happens to have badges to see that they exist at all. They're intended to be a bit of bling on a user but I see no way to actually feature that they have them to show off. If there's a PHP template or block I can use to make this happen myself I'd love to know. Ability to list all Badges on a page via a template or block or similar. I have a page where I did this quasi-manually by exporting the XML list, translating to JSON, then translating that to static HTML: User Ranks & Badges - Video Game Sage Perhaps there's some PHP code which lists them all. Even if I could literally lift this off the Admin CP as it exists there it would be sufficient. Any way to automate a public facing list of all Badges (and User Ranks!) that can be earned would be a huge help. Right now the thought of adding new ones is a cumbersome idea. Sort/filter the dropdown when awarding Badges. I have almost 400 badges in the system. They sort according to the order they were entered into the AdminCP, which means that categorizing, sorting, etc. them is currently impossible and as-is any new ones added will be at the bottom of the list rather than sitting with their peers. The ability to categorize/place in folders within the system could help a lot.
  3. Thanks
    Douglas Glover reacted to Jim M in Page -> List of all Badges?   
    This would require a customization of some kind as we do not outline this on a page. Otherwise, you're more than welcome to post this as a suggestion in our Feedback forum
  4. Agree
    Douglas Glover got a reaction from crmarks in Ability to toggle behaviour: Editing bumps blog posts   
    Please see my thread here: 
     
     
    I'd love the ability to change it so that editing a blog doesn't bump it to the top of Latest Activity. It's a relatively abusable feature once someone realizes that this happens as they can continue to edit the blog post over and over, keeping it at the top. I'd prefer not to have to make some arbitrary rule that would punish users for editing their blogs, as it's not black and white - they'll always easily just say "well it's a living document" or similar.
  5. Thanks
    Douglas Glover reacted to Jim M in Editing Blogs "Bumps" them   
    I'm afraid, this is intended to happen when content is edited. If you do not wish for this to happen, I would advise creating a topic in our Feature Suggestion forum to change this.
  6. Thanks
    Douglas Glover got a reaction from Fosters in Trophies and Medals - Supporttopic   
    Invision itself has deactivated the application, making it entirely unusable:

  7. Thanks
    Douglas Glover reacted to Daniel F in Ban words in username?   
    You can use the ban filters for this. ( ACP => Members => Ban Settings )
  8. Thanks
    Douglas Glover got a reaction from Adriano Faria in User Posts in Topic   
    I just installed the latest update and the tool has disappeared from all posts, despite still being enabled. For some reason, when I DISABLE it, the button comes back, however the page itself with the posts is gone. 
    Any idea why this might be happening?
    EDIT: Turning it off/on/off/on looks to have resolved the issue. Perhaps it was caching. Carry on!
  9. Agree
    Douglas Glover got a reaction from Unienc in Clicking reactions quickly breaks them (if temporarily)   
    If you click on one reaction and then quickly click another the reaction bar gets all messed up. The ability to remove your reaction disappears, the wrong reaction applies, and reactions clone on top of other reactions. Really gets jumbled. It SEEMS that even on a refresh, things kinda stay weird (note the order of them after my page refresh).
    Video of it:
     
  10. Thanks
    Douglas Glover reacted to GTAPoliceMods in Trophies and Medals - Supporttopic   
    @RoleplayUK Seems like $this->_item is null, because the trophy or medal the app's trying to load can't be found. As a temporary fix, you can try wrapping the offending call in an if statement to check if the trophy or medal is loaded properly.
    On line ~245 of applications / trophies / sources / Trophy / MemberTrophy.php, try replacing:
    public function getItemImage($class = '', $sizeForFa = 2, $addTitle = FALSE, $menu = TRUE ) { return $this->_item->getItemImage($class, $sizeForFa, $addTitle, $menu); } with:
    public function getItemImage($class = '', $sizeForFa = 2, $addTitle = FALSE, $menu = TRUE ) { if ($this->_item) { return $this->_item->getItemImage($class, $sizeForFa, $addTitle, $menu); } } Hopefully that'll stop the errors from appearing. Keep in mind the trophy or medal that can't be loaded won't appear on postbits.
    @Douglas Glover That functionality already exists in the app. Can be found at example.com/trophies or example.com/index.php?app=trophies&module=items&controller=index , unless I'm misunderstanding.
  11. Like
    Douglas Glover got a reaction from wegorz23 in Trophies and Medals - Supporttopic   
    Create a new Trophy Create a second Trophy Set the 2nd Trophy  to "replace" the 1st: Get error when trying to save:  
    Error in code for reference:
    TypeError: Argument 2 passed to IPS\trophies\extensions\trophies\TrophyCriteria\_Expression::memberMeetsCriteria() must be an instance of IPS\trophies\Trophy, instance of IPS\trophies\_Trophy given, called in /var/www/sitefiles/g290812/applications/trophies/sources/Trophy/Trophy.php on line 433 (0) #0 /var/www/sitefiles/g290812/applications/trophies/sources/Trophy/Trophy.php(433): IPS\trophies\extensions\trophies\TrophyCriteria\_Expression::memberMeetsCriteria(Object(IPS\Member), Object(IPS\trophies\_Trophy), NULL) #1 /var/www/sitefiles/g290812/applications/trophies/sources/Trophy/Trophy.php(478): IPS\trophies\_Trophy->memberMeetsCriteria(Object(IPS\Member)) #2 /var/www/sitefiles/g290812/applications/trophies/extensions/trophies/TrophyCriteria/Criteria.php(45): IPS\trophies\_Trophy::updateTrophiesForMember(Object(IPS\Member)) #3 /var/www/sitefiles/g290812/applications/trophies/sources/Trophy/Trophy.php(233): IPS\trophies\extensions\trophies\TrophyCriteria\_Criteria::handleForm(Array, Array) #4 /var/www/html/105109/system/Node/Controller.php(413): IPS\trophies\_Trophy->formatFormValues(Array) #5 /var/www/html/105109/system/Dispatcher/Controller.php(90): IPS\Node\_Controller->form() #6 /var/www/html/105109/system/Node/Controller.php(62): IPS\Dispatcher\_Controller->execute() #7 /var/www/sitefiles/g290812/applications/trophies/modules/admin/trophies/trophy.php(54): IPS\Node\_Controller->execute() #8 /var/www/html/105109/system/Dispatcher/Dispatcher.php(152): IPS\trophies\modules\admin\trophies\_trophy->execute() #9 /var/www/html/105109/admin/index.php(14): IPS\_Dispatcher->run() #10 {main}  
  12. Thanks
    Douglas Glover got a reaction from Fosters in Trophies and Medals - Supporttopic   
    Create a new Trophy Create a second Trophy Set the 2nd Trophy  to "replace" the 1st: Get error when trying to save:  
    Error in code for reference:
    TypeError: Argument 2 passed to IPS\trophies\extensions\trophies\TrophyCriteria\_Expression::memberMeetsCriteria() must be an instance of IPS\trophies\Trophy, instance of IPS\trophies\_Trophy given, called in /var/www/sitefiles/g290812/applications/trophies/sources/Trophy/Trophy.php on line 433 (0) #0 /var/www/sitefiles/g290812/applications/trophies/sources/Trophy/Trophy.php(433): IPS\trophies\extensions\trophies\TrophyCriteria\_Expression::memberMeetsCriteria(Object(IPS\Member), Object(IPS\trophies\_Trophy), NULL) #1 /var/www/sitefiles/g290812/applications/trophies/sources/Trophy/Trophy.php(478): IPS\trophies\_Trophy->memberMeetsCriteria(Object(IPS\Member)) #2 /var/www/sitefiles/g290812/applications/trophies/extensions/trophies/TrophyCriteria/Criteria.php(45): IPS\trophies\_Trophy::updateTrophiesForMember(Object(IPS\Member)) #3 /var/www/sitefiles/g290812/applications/trophies/sources/Trophy/Trophy.php(233): IPS\trophies\extensions\trophies\TrophyCriteria\_Criteria::handleForm(Array, Array) #4 /var/www/html/105109/system/Node/Controller.php(413): IPS\trophies\_Trophy->formatFormValues(Array) #5 /var/www/html/105109/system/Dispatcher/Controller.php(90): IPS\Node\_Controller->form() #6 /var/www/html/105109/system/Node/Controller.php(62): IPS\Dispatcher\_Controller->execute() #7 /var/www/sitefiles/g290812/applications/trophies/modules/admin/trophies/trophy.php(54): IPS\Node\_Controller->execute() #8 /var/www/html/105109/system/Dispatcher/Dispatcher.php(152): IPS\trophies\modules\admin\trophies\_trophy->execute() #9 /var/www/html/105109/admin/index.php(14): IPS\_Dispatcher->run() #10 {main}  
  13. Like
    Douglas Glover got a reaction from Adriano Faria in Ignore Topics   
    Hi @Adriano Faria, I just installed this plugin, but doesn't seem to be doing anything (I can't see the buttons or anything on the site). Is this plugin still working/compatible with the forum software? Thanks!
    EDIT: Nevermind, I fixed it by disabling and then re-enabling it!
  14. Thanks
    Douglas Glover reacted to Fosters in Trophies and Medals - Supporttopic   
    You could also use
    for any members which join in 2020
     
    Some other examples:
    Unfortunately it's not THAT easy to understand the expression code yet, that's why we're working on a better documentation, but hopefully there's also going to be an UI in a future version.
     
     
  15. Like
    Douglas Glover got a reaction from Adriano Faria in User Posts in Topic   
    Thanks! I checked there but see no difference from a diff check. THAT SAID! 
    I cleared the cache as suggested and boom - there it is!
    Sorry for the inconvenience, thanks for bearing with me, working great now!
×
×
  • Create New...