Jump to content

abobader

Clients
  • Posts

    705
  • Joined

Reputation Activity

  1. Agree
    abobader reacted to Afrodude in [Suggestion This Site] Add filter to Theme Differences   
    It would be nice if we can filter the theme differences.
    For example, I have forums license only, and I want only to see the theme differences in there only or I want to see System --> globalTemplate only etc.... I don't really need to see a very long page of other apps that I don't use.
    Theme Differences - Invision Community
  2. Like
    abobader reacted to opentype in Resize logo in email wrapper   
    Personally, I wouldn’t bother with it and just use the original image size. 
    If you really need to change it, you would have to customize the email wrapper template under Customization → Appearance → Email → Email Wrapper. 
    It’s this line that automatically uses the image size: 
    <img src='{file="\IPS\Settings::i()->email_logo" extension="core_Theme"}' alt="{setting="board_name"}" width='{$imgDims[0]}' height='{$imgDims[1]}' /> You could use hard-coded values for width and height, for example at half the size of the image. 
  3. Thanks
    abobader reacted to Randy Calvert in New registration password   
    There is not a default feature to do this. I looked in marketplace around the phrase “password” and did not find anything either. It would most likely need developed by a 3rd party. 
  4. Like
    abobader reacted to Kirill Gromov in Avatar Hub   
    Hello, @balazsp, you can use something like this:
    Create a new Pages block with html and add this:
    <a class='ipsButton ipsButton_medium ipsButton_important ipsButton_fullWidth' href='#' data-ipsDialog data-ipsDialog-url='/index.php?app=avatarhub&module=hub&controller=front&do=styleAvatar'>Select Avatar</a> Should work
  5. Thanks
    abobader reacted to Randy Calvert in Registration for account security will not save at admincp   
    Glad you got to the bottom of the problem. 🙂 
  6. Haha
    abobader reacted to Charles in Invision Community Insight: Deprecation Communication, March Release and more.   
    Olivia always says I am so easy to work with. 
  7. Like
    abobader reacted to Charles in Courses and Lessons   
    We are currently in the beginning stages of developing a Courses and Lessons application within Invision Community. This will only be available on our cloud services as a value addition.
    We receive regular requests for Learning Management System (LMS) capabilities in Invision Community and the Courses app will start us down that path. 
    The Courses app is not going to try to be a full LMS. Not trying to run a university here 🙂
    But we do think there is value in offering basic LMS capabilities within a community context. Some features we are already doing:
    Ability to create Courses with multiple Modules Modules can have multiple content items that a member can read/engage (articles, videos, discussions) Courses can be made optional or required. Required courses can be defined as "do this first" or literally required as in you must take course within X days of joining community. Badges/points awarded on various completion events. Reports for those who enroll and/or complete a Course. Reports can be exported to CSV. As this is early development we are open to ideas and suggestions.
    How might you use Courses?
    What capabilities would you want to see?
  8. Like
    abobader reacted to Afrodude in Pages UI Polish   
    @Ehren has done a great job recently, but this is area has been missed. This is just to point at it as hopefully it gets polished in the future.
     

  9. Like
    abobader reacted to Ehren in Pages UI Polish   
    Hey @SeNioR-
    Thanks for reporting those. Can I ask what device you're using? The UI is designed for all mobile devices and even works with the smallest resolution I was able to test which is an iPhone 3G (320px in width). Your screenshots seem to be of a device which is even smaller than that.
    This is how they're displayed at 360px (the width of an iPhone Mini):

     
    With this in mind, does the pagination also work correctly when viewed at 360px? My guess is that you're using the browser developer tools to resize your window, but the resized window is far smaller than a real life mobile device. If I'm mistaken though, please let me know so I can look into it further 🙂
  10. Like
    abobader reacted to Ibai in Add width and height to reactions   
    Hi,
    Another thing I always change in every template I customize is the size of the reaction icons. This is sth suggested and reported by PageSpeedTest.
    You can find in reactionOverview template bit, for instance:
    <img src='{$reaction->_icon->url}' alt="{lang="reaction_title_{$reaction->id}" escape="true"}" loading="lazy"> I always change for the folloging
    <img src='{$reaction->_icon->url}' alt="{lang="reaction_title_{$reaction->id}" escape="true"}" loading="lazy" width="28" height="28"> There is another template bit to change: searchReaction.
    Any chances to have this as standard? Do you think it's a good idea?
    Cheers,
    Ibai
  11. Like
    abobader reacted to Ehren in Add width and height to reactions   
    Thanks for your feedback @Ibai. The next major version of Invision Community will be focusing on performance improvements such as this (adding width/height attributes, using native lazy loading, etc). We don't have any information to share yet, but things like this will be implemented by default in the future 🙂
     
    The width and height tags only support numerical values. Adding units will make them invalid. Instead, you should simply use width="24" height="24"
  12. Like
    abobader reacted to Hisashi in [Articles] html formatting error   
    The title is going behind the user's profile picture. @Ehren


  13. Like
    abobader reacted to Ehren in [Articles] html formatting error   
    Thanks Hisashi, I'll keep this in mind for a future update 🙂
  14. Like
    abobader reacted to Marc Stridgen in Where should I post my upgrade Error message problem with new Structure?   
    The self hosting section generally would be for items relating only to self hosting, rather than the software as a whole. Installation, permission issues, configuring server items and the likes. It does however seem to have been missed there, so can only apologise on that. I will take a look at that now for you.
  15. Like
    abobader reacted to Marc Stridgen in In this forum: Thread do not show I post in   
    I have added that as a bug for someone to take a look at. Thank you for letting us know
  16. Like
    abobader reacted to Adlago in Add width and height to reactions   
    1. Loading = lazy makes loading icons delay, but does not onload them after loading the page, data-src should be added
    2. Actual size of icons is 24 x 24, so this size should be specified in link
    3. For responsive rendering, you should also add, for example, class=react, respectively, add the necessary in the custom css, and neutralize the original max sizes from the framework css.
    4. Link should be edited in templates reactionBlurb and reactionOverview
    I use this:
    Link edited
    <img class="react" src='{expression="\IPS\Text\Parser::blankImage()"}' data-src='{$reaction->_icon->url}' alt='{lang="reaction_title_{$reaction->id}" escape="true"}' width="24px" height="24px" loading="lazy"> Custom css
    .react{width:28px;height:28px} .ipsReact_reactCount img {max-width: 28px;max-height: 28px;} @media screen and (max-width: 767px) { .react{width:20px;height:20px} }  
  17. Like
    abobader got a reaction from Ibai in Read and unread topic   
    It was fixed by our theme designer, thanks.
  18. Like
    abobader reacted to SeNioR- in Pages UI Polish   
    By the way:
    The "Login" button is not responsive and streams are better to put on one line with truncated text:

    FIX:
    .ipsDrawer_itemParent > .ipsDrawer_list > li > a:not( .ipsButton ) { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } and for Button:
    .ipsToolList > * { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } Pagination (larger font adds bottom scroll bar)

    FIX:
    @media screen and (max-width: 979px){ [dir] .ipsPagination:not(.ipsPagination_mini) > li { overflow: hidden; white-space: nowrap; text-overflow: clip; } }
  19. Like
    abobader reacted to Ehren in Auto space after "Mention"   
    You’d be surprised at some questions I’ve seen in the past, so I just assumed this was legit too 😅
  20. Like
    abobader reacted to Ehren in Auto space after "Mention"   
    That potentially sounds like an Android thing, not a CSS thing 🙂
  21. Like
    abobader reacted to Nathan Explosion in (NE) HTML5 Audio/Video Player   
    v2.2.0 is currently pending approval.
    NEW
    Added "Apply settings to native IPS audio" & "Enforce 'Download attachments' permission" settings on the 'Audio' tab. These settings mirror some of the functionality provided by the equivalent settings on the 'Video' tab. If a user doesn't have permission to download attachments then the IPS-embedded audio player will be converted to a normal attachment link. 'Preload' settings will be applied to IPS-embedded audio players. 'Disable right-click' functionality is now effective on attached audio files. CHANGES
    Minor language updates FIXES
    Fixed an issue when adding a Pages WYSIWYG block via the block manager would result in an 'Error', stopping you from configuring the block at that time. Fixed an issue where a Pages WYSIWYG block was no longer processed by the application if the block wasn't on a Pages page.
  22. Thanks
    abobader reacted to Ehren in Auto space after "Mention"   
    Sure thing. Adding this to your custom.css file should add a space after the mention tag inside posts and the editor:
    :is(.ipsComposeArea,.ipsType_richText) [data-mentionid]{ margin-inline-end: .5em; }  
  23. Like
    abobader reacted to Marc Stridgen in Locked task "queue" as well system logs   
    Just a quick update to let you know that this issue was resolved in the recent 4.7.8 release of our platform. Please upgrade your site to resolve this issue. If you are still seeing any issues after upgrading to this version, please let us know.
  24. Like
    abobader reacted to Ehren in Auto space after "Mention"   
    Hi @abobader,
    That's actually working as intended. It behaves the same as other "mention" features such as those found in iMessage and Facebook. The lack of a space is also ideal for situations where you want to place grammar immediately after the username, such as the comma in the top line of this post, or an apostrophe.
    I hope that helps to clarify 🙂
  25. Like
    abobader reacted to Jim M in Read and unread topic   
    Looking at your community, I am not seeing any issues with the software. Unread and read topics are displaying properly on your community. However, you are using customized themes so that may be playing a part which you may wish to speak to a theme author about assistance in making the contrast there different.
    Otherwise, you're welcome to provide suggestions here for a future release.
×
×
  • Create New...