Jump to content

SeNioR-

Members
  • Posts

    1,146
  • 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

Everything posted by SeNioR-

  1. I just got a new push notification because I'm following Jim M's content but when I click on it, it only takes me to the homepage 😒
  2. After receiving a push notification, it would be nice if, when clicked, it redirected immediately to the list of notifications and not to the homepage.
  3. I did some tests and actually tags have nothing to do with it. You're right. Anyway, only Chrome allows you to install a PWA application, Firefox, Opera or Edge only install a "shortcut" on the screen. I didn't pay attention to it before.
  4. I have Android 13. I noticed that if we don't set the iOS Startup Image (start screen for Apple), we can't install the PWA application. Recently there have been problems with the configuration of the iOS screen, so I suggest moving the meta tag <meta name="mobile-web-app-capable" content="yes"> <meta name="apple-touch-fullscreen" content="yes"> <meta name="apple-mobile-web-app-capable" content="yes"> before {{if \count( $apple )}} After this procedure, the browser detected the application. Referrer: https://stackoverflow.com/posts/27951414/revisions
  5. change "does not equal" to does not contain"
  6. Cookies dude, your browser doesn't block them?
  7. You're probably already logged out but the cache still shows you are logged in that's why this error.
  8. Hi, maybe this way? <?php require_once 'init.php'; \IPS\Task::queue( 'core', 'RebuildPosts', array( 'class' => 'IPS\forums\Topic\Post' ), 2 ); ?>
  9. just change "admin" to your admin panel path.
  10. 🙏 Now, open your community in incognito mode and let me know if you see a difference in page loading speed. Generally, the page should load right away.
  11. Correct. I forgot to mention there is a problem with changing language and theme. The cache still shows the previous language or theme (until we go to another page or the cache clears), but this is a sign that the cache is working.
  12. Marcin, by the way, something went broken here. Also the Google ad is too wide
  13. Pinging the Google sitemap will no longer be possible. Article from yesterday: https://developers.google.com/search/blog/2023/06/sitemaps-lastmod-ping
  14. As I wrote in the beginning, it happened to me too. I was registering the account as usual (not via the popup), and probably had to click the "Register" button twice. I was surprised too, but it's actually possible. This can be marked as a bug.
  15. 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. BTW: In 2024, Google is expected to introduce a INP.
  16. Hovering over the image as "Guest" instead of the correct image title (Enlarge Image), it says "Unavailable".
  17. 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' ) ); }
  18. FIX (topic): <a id='replyForm'></a> to <div id='replyForm'></div> and (postContainer): <a id='comment-{$comment->$idField}'></a> to <div id='comment-{$comment->$idField}'></div>
  19. False. You cannot register an account with the same display name. Each display name must be unique 👍 The username is created based on display name and cannot be changed.
  20. Hi, @SJ77. It happened to me too 🙄 This is the case when someone has slow internet, or the website is slow, registration sometimes takes a few seconds. When you click the 'Register' button several times, several of the same accounts are created.
×
×
  • Create New...