Jump to content

Redmak

Clients
  • Posts

    173
  • Joined

  • Last visited

Reputation Activity

  1. Like
    Redmak reacted to Nathan Explosion in AdSense Crawler   
    Pretty sure I sent it to you previously and we had a discussion about all that.
    Anyway...
    Do I still have it? Yep, somewhere on a backup. Does it still work on the latest? No idea - I don't use it, and several years ago it became difficult to test it on the adsense site to confirm it was working "AdSense Crawler plugin" - it's not an adsense crawler plugin. It's a security-weakening plugin that removes CSRF check on a specific account that is then used by you to configure a Adsense to login. Someone who still uses can comment on no.2 above and advise if it still works - if it does, then I'll dig it out when I've got time to look through backups and send it over.
  2. Like
    Redmak reacted to Nathan Explosion in (NE) Quote Enhancements   
    OK - full disclosure though, it's not likely to be something I'll work on 'fixing' quickly. The application isn't intended to handle AJAX added elements so a re-design of code would be required.
  3. Thanks
    Redmak reacted to Nathan Explosion in (NE) Quote Enhancements   
    So, to summarise - add a setting to enable the 'Hide ignored quotes' setting for all users, by default?
    Is that correct?
  4. Like
    Redmak got a reaction from Nathan Explosion in (NE) Quote Enhancements   
    Hi Nathan! Yes they do. It must have been in the state that it kept disabling when the control wasn't there.
    Thanks for all your help man.
  5. Thanks
    Redmak reacted to Luuuk in Is there a setting to force new paragraph instead of line break and make quotes larger?   
    For your second question:
     
  6. Thanks
    Redmak reacted to Luuuk in Is there a setting to force new paragraph instead of line break and make quotes larger?   
    ACP > Customization > Editor > Settings > Return Key Behavior
    There is no setting for that.
  7. Thanks
    Redmak reacted to Jim M in Bug: Reason for hiding topic note for moderators not shown inline   
    Thank you for bringing this issue to our attention! I can confirm this should be further reviewed and I have logged an internal bug report for our development team to investigate and address as necessary, in a future maintenance release.
     
  8. Like
    Redmak got a reaction from RObiN-HoOD in Anonymize flagged as spammer display names   
    Whenever I flag a spammer certain actions are carried out to ban the account and IP and also soft delete their posts, but one thing that I think should be taken into consideration is freeing up display name choices of spammers. In many cases the names are now thought out well to try and bypass the antispam checks, meaning it is forever lost to genuine members registering later.
    Simply: On flag as spammer, also randomize the member name to guest[number] similar to what the GDPR task does.
    I currently am using 4.6.5.1.
  9. Thanks
    Redmak reacted to Marc Stridgen in Is Question and Answer challenge cAsE SeNsaTivE?   
    They are not case sensitive
  10. Agree
    Redmak got a reaction from Afrodude in Anonymize flagged as spammer display names   
    Whenever I flag a spammer certain actions are carried out to ban the account and IP and also soft delete their posts, but one thing that I think should be taken into consideration is freeing up display name choices of spammers. In many cases the names are now thought out well to try and bypass the antispam checks, meaning it is forever lost to genuine members registering later.
    Simply: On flag as spammer, also randomize the member name to guest[number] similar to what the GDPR task does.
    I currently am using 4.6.5.1.
  11. Agree
    Redmak got a reaction from Percival in Anonymize flagged as spammer display names   
    Whenever I flag a spammer certain actions are carried out to ban the account and IP and also soft delete their posts, but one thing that I think should be taken into consideration is freeing up display name choices of spammers. In many cases the names are now thought out well to try and bypass the antispam checks, meaning it is forever lost to genuine members registering later.
    Simply: On flag as spammer, also randomize the member name to guest[number] similar to what the GDPR task does.
    I currently am using 4.6.5.1.
  12. Like
    Redmak reacted to Ehren in A way to add "members only" after forum titles?   
    Hi @Redmak
    I do something similar on my own forums, however I show an overlay to non-customers (basically guests or regular members). If an admin or customer is viewing the site, the overlay isn't shown. I use css to achieve this, and it only involves a minor template modification on globalTemplate.
    This technique can easily be adjusted to show the icon/message to members instead. To use this technique on your site, open your globalTemplate file and find:
    <html Change that to:
    <html data-group-id='{expression="member.member_group_id"}' That will output the member group ID of the current visitor. We can now use something like the below code to display a message or icon next to certain forum names. This example will add a "Members only" badge next to forum #81 if the person viewing your site is in group 3 ("Members" by default):
    [data-group-id='3'] [data-forumid='81'] .ipsDataItem_title::after{ content: 'Members only'; font-size: 0.6em; font-weight: bold; background: rgb(var(--theme-text_light)); color: #fff; border-radius: 4px; padding: .2em .7em; margin-left: .7em; } If you're unfamiliar with CSS, you can add this badge to multiple forums by duplicating and comma separating the top line like so:
    [data-group-id='3'] [data-forumid='81'] .ipsDataItem_title::after, [data-group-id='3'] [data-forumid='82'] .ipsDataItem_title::after, [data-group-id='3'] [data-forumid='105'] .ipsDataItem_title::after, [data-group-id='3'] [data-forumid='202'] .ipsDataItem_title::after, [data-group-id='3'] [data-forumid='231'] .ipsDataItem_title::after, [data-group-id='3'] [data-forumid='232'] .ipsDataItem_title::after{ content: 'Members only'; font-size: 0.6em; font-weight: bold; background: rgb(var(--theme-text_light)); color: #fff; border-radius: 4px; padding: .2em .7em; margin-left: .7em; } Or, if you'd rather use the padlock instead:
    [data-group-id='3'] [data-forumid='81'] .ipsDataItem_title::after, [data-group-id='3'] [data-forumid='82'] .ipsDataItem_title::after, [data-group-id='3'] [data-forumid='105'] .ipsDataItem_title::after, [data-group-id='3'] [data-forumid='202'] .ipsDataItem_title::after, [data-group-id='3'] [data-forumid='231'] .ipsDataItem_title::after, [data-group-id='3'] [data-forumid='232'] .ipsDataItem_title::after{ content: '🔒'; }  
    Does that help?
  13. Thanks
    Redmak reacted to Matt in Before I enable achievements, is everyone a newb/start at 0?   
    I see you had your questions answered. 🙂

    Let me know if you need anything else.
  14. Agree
    Redmak reacted to Nathan Explosion in Before I enable achievements, is everyone a newb/start at 0?   
    Cue people asking why your rebuild is going so quickly 😄
    Likely, and easy, answer - neowin.net is running on a proper beefy server setup.
    Will be interesting to see how long this one takes to complete, so pop a message in when done,
  15. Like
    Redmak got a reaction from Matt in Forums no longer have "posted x minutes ago" everywhere   
    Thanks so much Nathan!
  16. Thanks
  17. Like
    Redmak got a reaction from sobrenome in Google reCAPTCHA v3 on IPS. When?   
    I read around the web last week that Google is going to start charging for reCaptcha which would make hCaptcha even more desirable if it was incorporated into the forum software as a supported feature.
    Although the criteria for charging is high (million requests a day, or 1000 a second) it only takes some bad actor to target a site and run up those requests, and that article is from 2020 so that criteria may have already changed, knowing Google.
  18. Like
    Redmak reacted to MEVi in Google reCAPTCHA v3 on IPS. When?   
    Invision offers a subscription-based spam filter, it would be convenient to have this additional feature without having to go through an external developer.
×
×
  • Create New...