Jump to content

Morrigan

Clients
  • Posts

    6,263
  • Joined

  • Last visited

  • Days Won

    41

Reputation Activity

  1. Thanks
    Morrigan got a reaction from Viper V2 in Using Promote Group   
    So first off, by default once the person is validated (depending on your validation method) they are automatically placed into a standard "Members" group. Before they are validated they are queued to either be approved or deleted depending on validation settings.
    If you want to move them to a new group immediately after they are validated you just need to add a group promotion rule that you leave everything default except the "move group" setting which you choose what group you want them to get.
  2. Thanks
    Morrigan got a reaction from vbauss in Custom Featured Image for Social Shares   
    @SC36DC
    It is in Icons and Logos:

    Second option. If it's weirdly cropped then most likely its not sized correctly. I believe it needs to be a square and 512x512 minimum, suggested is 1024x1024 IIRC.
  3. Thanks
    Morrigan got a reaction from Sheffielder in Archiving themes   
    Yes
  4. Thanks
    Morrigan got a reaction from kmk in Stop Guests viewing Profiles??   
    @Matt Chivers
    Dashboard > Applications > Click arrow to the left of System > Click the lock next to "Profiles" and remove "Guest"'s check mark.
  5. Like
    Morrigan got a reaction from CoffeeCake in Stop Guests viewing Profiles??   
    @Matt Chivers
    Dashboard > Applications > Click arrow to the left of System > Click the lock next to "Profiles" and remove "Guest"'s check mark.
  6. Thanks
    Morrigan got a reaction from Sheffielder in Problem with buttons   
    That means the issue is with your theme. You'll need to fix it (if you made it) or reach out to the theme creator (or hire someone to fix it for you).
  7. Thanks
    Morrigan got a reaction from Sheffielder in Reply box at bottom of topics to always show open   
    @Sheffielder There is currently no way to do this. Its intended to be this way to prevent the javascript and whatnot from loading every time the page loads (it speeds up the loading process).
  8. Haha
    Morrigan reacted to Kyle F in Grab Member Count in Pages   
    Oh shoot, I thought it was the question mark I had to replace. 😅
  9. Thanks
    Morrigan got a reaction from Kyle F in Grab Member Count in Pages   
    @Kyle F
    {expression="\IPS\Db::i()->select( 'COUNT(*)', 'core_members', ['member_group_id=?', ##])->first()"} I think.
  10. Like
    Morrigan got a reaction from kmk in Change Youtube embed dimensions   
    System > Settings > Posting > Maximum video content width
    I don't remember if its retroactive though.
  11. Thanks
    Morrigan got a reaction from anon2020 in Change Youtube embed dimensions   
    System > Settings > Posting > Maximum video content width
    I don't remember if its retroactive though.
  12. Like
    Morrigan got a reaction from Jorge Varela in Hide and show blocks according to language   
    You would have to do it at the block/page level because currently there is no way to do it otherwise. You would add something like this around the block @Jorge Varela
    {{if \IPS\Member::loggedIn()->language()->bcp47() == 'en-US'}} Block stuff here for English {{endif}} Replacing en-US with the language for the respective block.
  13. Haha
    Morrigan got a reaction from Makoto in What is the expiry for one-time subscription without renewal   
    There is currently no way to do this. Also you just tagged a random member on the site lol.
     
  14. Thanks
    Morrigan got a reaction from Gauravk in What is the expiry for one-time subscription without renewal   
    @Gauravk This is a support forum. I recommend you post in the feedback forum.
  15. Thanks
    Morrigan got a reaction from Gauravk in What is the expiry for one-time subscription without renewal   
    There is currently no way to do this. Also you just tagged a random member on the site lol.
     
  16. Like
    Morrigan got a reaction from Maxxius in Grab Member Count in Pages   
    @Kyle F
    Use this:
    Total Members: {expression="\IPS\Db::i()->select( 'COUNT(*)', 'core_members', ['completed=?', true] )->first()"}  
  17. Like
    Morrigan got a reaction from Kyle F in Grab Member Count in Pages   
    @Kyle F
    Use this:
    Total Members: {expression="\IPS\Db::i()->select( 'COUNT(*)', 'core_members', ['completed=?', true] )->first()"}  
  18. Sad
    Morrigan got a reaction from Askancy in Default dark theme   
    I believe IPS has stated before that they won't maintain two themes (a light and a dark) but just in case you're looking for a base theme to do a default dark thing with:
     
  19. Like
    Morrigan got a reaction from Meddysong in Hide and show blocks according to language   
    You would have to do it at the block/page level because currently there is no way to do it otherwise. You would add something like this around the block @Jorge Varela
    {{if \IPS\Member::loggedIn()->language()->bcp47() == 'en-US'}} Block stuff here for English {{endif}} Replacing en-US with the language for the respective block.
  20. Like
    Morrigan got a reaction from pequeno in htpasswd and Admin CP access error   
    It sounds like its setting it up wrong:
    /home/site/.htpasswds/public_html/admin/passwd Because .htpasswds is a file and can't have subfolders.
  21. Like
    Morrigan got a reaction from pequeno in htpasswd and Admin CP access error   
    I mean I don't know how your .htaccess is setup in that folder or the file its looking for so I, nor anyone else, could actually tell you.
  22. Like
    Morrigan got a reaction from pequeno in htpasswd and Admin CP access error   
    404 means not found.
    Additionally htaccess with htpasswd is no longer a recommended way to secure your admin panel. The recommended way is to use MFA in:
    System > Settings > Two Factor Authentication
  23. Like
    Morrigan got a reaction from Jock3r in Signature Font-Size   
    You can't disable the WYSIWYG editor BUT you can limit height of signatures by adding this to your custom.css:
    [data-role="memberSignature"] { max-height: 430px; overflow: hidden; } It's what I do on my site because I have a max-signature height rule of 400px (because people go crazy with images too loves, even if they get just one). You have to add the extra 30px because it includes the hr and margin in the section so they get their true height.
  24. Like
    Morrigan got a reaction from Meddysong in Signature Font-Size   
    You can't disable the WYSIWYG editor BUT you can limit height of signatures by adding this to your custom.css:
    [data-role="memberSignature"] { max-height: 430px; overflow: hidden; } It's what I do on my site because I have a max-signature height rule of 400px (because people go crazy with images too loves, even if they get just one). You have to add the extra 30px because it includes the hr and margin in the section so they get their true height.
  25. Like
    Morrigan got a reaction from opentype in Signature Font-Size   
    You can't disable the WYSIWYG editor BUT you can limit height of signatures by adding this to your custom.css:
    [data-role="memberSignature"] { max-height: 430px; overflow: hidden; } It's what I do on my site because I have a max-signature height rule of 400px (because people go crazy with images too loves, even if they get just one). You have to add the extra 30px because it includes the hr and margin in the section so they get their true height.
×
×
  • Create New...