Jump to content

kRSB

Clients
  • Joined

  • Last visited

  1. I just pushed an update for the GroupMention plugin that fixed an issue with php 8.1. Maybe that will also make it work again for you
  2. kRSB replied to kRSB's post in a topic in Marketplace
    New update: fixed issue with PHP 8.1 and the queuing of the notifications
  3. kRSB replied to kRSB's post in a topic in Marketplace
    Hey @Afrodude, I was trying to reproduce it this weekend but I didn't manage to, the way I tested: 1) Create a new topic where I mention group X 2) Login as a member of group X 3) Member gets the notification 4) Edit the topic and also mention group Y 5) Login as member of group Y 6) Member gets the notification 7) Edit the topic and also mention Member "Test" 8 ) Login as member "Test" 9) Member "Test" gets the notification 10) Edit the topic and also mention member "Test2" 11) Login as member "Test2" 12) Member "Test2" gets the notification 13) Edit the topic and also mention group Z 14) Login as member of group Z 15) Member gets the notification I assume you are running latest version of groupmention and IPB? I think there might be another plugin or app that is conflicting
  4. kRSB replied to kRSB's post in a topic in Marketplace
    Ok thanks for reporting. I'll take a look
  5. kRSB replied to kRSB's post in a topic in Marketplace
    Worked fine on my local install so should normally be safe. Let me know if you run into any issues
  6. kRSB replied to kRSB's post in a topic in Marketplace
    Sorry for the late reply, I thought I already replied to this. But unfortunately mentions works differently for Pages Content, Right now it's not possible to hook into this code. I'll try get in contact with an IPS Dev to see if they make this function more hookable in the future so I can dd this. Do you want an option for members to disable it theirselves (for example on their profile). Or for admins to select a complete group to not show the members in the group listing? ------------------------------------------------------------------------------------------------------ Also update for 4.7 has been pushed, waiting on mod review now 🤞
  7. kRSB replied to kRSB's post in a topic in Marketplace
    submitted a new version for approval which will fix this With Articles you mean a Pages Database right? Let me see if I can hook into that to prevent notifications on edit
  8. kRSB replied to kRSB's post in a topic in Marketplace
    Do you mind sharing ACP info via PM? I would need to have a closer look if none of the above solves it.
  9. kRSB replied to kRSB's post in a topic in Marketplace
    Ah damn, I first thought it would be related to a group having no color but that also seems to work for me: To be 100% sure it's not related to the color, could you try giving 1 of your groups a color and check if that shows up?
  10. kRSB replied to kRSB's post in a topic in Marketplace
    Hey, is the color of your group white perhaps? it shows it in the color of the group: But it's strange that you get an empty @ though, can you try it on the default theme?
  11. kRSB replied to kRSB's post in a topic in Marketplace
    Hey @Afrodude, I took another look at this: As you know Group mentions are only allowed for certain groups which can be configured in the settings of ACP. So when someone posts a group mention I check if the user is in the allowed groups, however when that person posts as "Anonymous" IPB returns a Guest account for the author, here is the code piece below: if( $this->isAnonymous() ) { $guest = new \IPS\Member; $guest->name = \IPS\Member::loggedIn()->language()->addToStack( "post_anonymously_placename" ); return $guest; } So I can't check if that user is in the allowed groups, so the only way to make this work would be to allow everyone who posts as Anonymous to use group mentions but that doesn't sound like a good idea to me 😛
  12. kRSB replied to kRSB's post in a topic in Marketplace
    Hey, which version of IPB are you running and where does it happen? is it just on a topic? I'm not able to reproduce this.
  13. kRSB replied to kRSB's post in a topic in Marketplace
    New version has been submitted with fix, waiting on approval now @Afrodude Sorry for the bug, I was so focussed on testing that it didn't mention the group again after edit that I forgot to test editing posts containing no groupmention 😅
  14. kRSB replied to kRSB's post in a topic in Marketplace
    Thanks for reporting, I'll look into it
  15. kRSB replied to kRSB's post in a topic in Marketplace
    Submitted a new version to the marketplace. Waiting on approval now