Jump to content

SeNioR-

Members
  • Posts

    1,144
  • Joined

  • Days Won

    5

 Content Type 

Downloads

Release Notes

IPS4 Guides

IPS4 Developer Documentation

Invision Community Blog

Development Blog

Deprecation Tracker

Providers Directory

Forums

Events

Store

Gallery

Posts posted by SeNioR-

  1. Hi Guys. I've tested a few different forum topics for mobile friendliness, and it turns out that many self-hosted forums don't meet the mobile-friendly requirements. It seems that Google is blocking many necessary resources (CSS Framework and JS Libraries) so such a topic is devoid of a stylesheet and does not meet the criteria for "Core Web Vitals" and has a low "Page Experience" value.

    If we look for an indexed topic and check its cache version, we'll see that it doesn't have a stylesheet. Not in all cases, but in many.

    I hope that v5 will be better optimized and will not load so much unnecessary code that the Googlebot is unable to handle.

    Could contain: Page, Text

    Could contain: Page, Text, File, WebpageCould contain: Page, Text, FileCould contain: Page, Text

    BTW: In 2024, Google is expected to introduce a INP.

    Could contain: Page, Text

  2. Small tweak to not load JS and CSS for guests as they don't have access to the Messenger anyway.

    Hook cssFiles.php:

    \IPS\Output::i()->cssFiles = array_merge( \IPS\Output::i()->cssFiles, \IPS\Theme::i()->css( 'livemessenger.css', 'livemessenger', 'front' ) );

    to

    if ( \IPS\Member::loggedIn()->member_id ) {
    \IPS\Output::i()->cssFiles = array_merge( \IPS\Output::i()->cssFiles, \IPS\Theme::i()->css( 'livemessenger.css', 'livemessenger', 'front' ) );
    }

    and

    \IPS\Output::i()->jsFiles = array_merge( \IPS\Output::i()->jsFiles, \IPS\Output::i()->js( 'front_livemessenger.js', 'livemessenger', 'front' ) );

    to 

    if ( \IPS\Member::loggedIn()->member_id ) {
    \IPS\Output::i()->jsFiles = array_merge( \IPS\Output::i()->jsFiles, \IPS\Output::i()->js( 'front_livemessenger.js', 'livemessenger', 'front' ) );
    }
  3. Hello everyone. Am I the only one missing the option to merge and delete private messages? It often happens that a user sends several similar messages, it would be nice to be able to merge them into one conversation. Same with deleting, no matter how many people are attached to a message, moderators should have the option to completely delete a private message as with topics.

  4. Personally, I haven't noticed a problem with logging out (yet), but when I uncheck the "Remember me" and refresh the page, this field is still selected. Maybe it's supposed to be like that, I don't know, but it wasn't like that before.

    BTW: Has the option of "optional" cookies been removed? Because I no longer see it.

×
×
  • Create New...