Jump to content

SeNioR-

Members
  • Posts

    1,156
  • 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. I did some tests and changed the URL via the database and didn't notice any problems, so I think I will be able to create a plugin through which I can change the URL 😉

    Article on Backlinko: 200 Ranking Factors: The Complete List (2022)

    • URL length is listed as #46 in Google’s top 200 ranking factors
    • URL path is listed as #47
    • Keyword in the URL is #51
    • URL string is #52
  2. Yes. This is just an image from Google. Twitter (at least for me) does not immediately load images or videos. You have to click on the images first and then it is loaded.

    Due to the fact that the image is not immediately loaded, the Twitter timeline loads pretty quickly (because there is only text there). It would be nice to have such a feature in IC 🙂 

  3. When we create a topic, the URL is created from the title of the topic. In the case of a long topic title name, it would be useful to have the option to manually change the URL, as it is for example in WordPress.

    url-slug-classic.png.thumb.webp.f5c7f81637e5fe9e6e10dba49b775567.webp

    Why?  According to Backlinko, "Shorter URLs tend to rank better than long URLs." To prove this, they performed some extensive testing on one million Google search results.

    Here’s a graph that shows how Google rankings decline as URL length gets longer.

    url-lengd.thumb.png.d59d039d9ac2eee97dc93e00d6deeb5c.png

    It’s pretty cut and dry. Notice how the number one position has URLs with roughly 50 characters.

    But once you move down to the number 10 spot, the average URL has 62 characters.

    So somewhere around 50 – 60 characters is a pretty good number to shoot for.

    If you go way beyond (say 80+ characters), this is likely to have a negative impact on your ranking.

  4. 14 minutes ago, Ghost Face said:

    But your support is the most awful I've come across in a pretty long time. It takes literally 10 full days to finally get an answer on my problem on

    10 days is actually a long time, but the support has really changed. Today, Marc and the others are trying to help every day which is cool.

    A year ago, you would probably get the answer after a month or not at all.

  5. Hello. I set the maximum size of profile pictures to 150 px, for one of the groups.

    I also defined a variable in constants.php

    \define( 'PHOTO_THUMBNAIL_SIZE', 150 );

    The problem is that an unnecessary thumbnail of the same size and weight is created.

    Even if I skip cropping/adjusting the image by closing the window, the thumbnail is still created.

    Is there any way to bypass thumbnails for profile pictures? Because currently, two identical images are created.

    Thanks.

  6. I got the idea to do something like linked topics that could be marked by staff. Links could be in the widget or under the first post.

    linked-topics.thumb.jpg.b842b82e4e2dc113f8e0acec39e3d384.jpg

    I know I can achieve a similar effect with tags but, I wouldn't have to use tags to relate several similar topics to each other.

    linked-123.png.23d1a438c30e4e06b0550cb8e4b17fe9.png

    link-topic.png.366f13c03ec3dcc287ed7b76dcedff82.png

  7. Has anyone tried this code?

    <IfModule mod_rewrite.c>
      RewriteEngine On
    
      # Check if browser supports WebP images
      RewriteCond %{HTTP_ACCEPT} image/webp
    
      # Check if WebP replacement image exists
      RewriteCond %{DOCUMENT_ROOT}/$1.webp -f
    
      # Serve WebP image instead
      RewriteRule (.+)\.(jpe?g|png|gif)$ $1.webp [T=image/webp,E=REQUEST_image]
    </IfModule>
    
    <IfModule mod_headers.c>
      # Vary: Accept for all the requests to jpeg, png and gif
      Header append Vary Accept env=REQUEST_image
    </IfModule>
    
    <IfModule mod_mime.c>
      AddType image/webp .webp
    </IfModule>
×
×
  • Create New...