• chaim3026

    (@chaim3026)


    Greetings,

    I upload large files to my site, over 5000px
    WordPress limits my size and reduces all my images.
    He only leaves me the original file as a copy, so I have no way to retrieve it from the media library, it does not appear there.
    How do I get WordPress to give me the original file in the media library?

    I would love your urgent help!

    • This topic was modified 3 years ago by Jan Dembowski. Reason: Moved to Fixing WordPress, this is not an Developing with WordPress topic
Viewing 10 replies - 1 through 10 (of 10 total)
  • Vijay Hardaha

    (@vijayhardaha)

    When you’ll click on any image on the media library, you’ll have a media popup, on right you’ll find media information, there you’ll see “Original Image” with a link to the original image.

    Thread Starter chaim3026

    (@chaim3026)

    True, but I can not add it to the post. I need it to appear in my media library so I can use an image in a post or product, for example.

    Vijay Hardaha

    (@vijayhardaha)

    You must be using any image optimized plugin that is limiting things for you.

    Thread Starter chaim3026

    (@chaim3026)

    Do you have a recommendation?

    Vijay Hardaha

    (@vijayhardaha)

    You need to find the plugin and disable the limitation settings, In my knowledge, WordPress default doesn’t limit anything for images.

    Thread Starter chaim3026

    (@chaim3026)

    I tried to upload now to a site that has no plugins at all, and still has this restriction, it probably does have to do with WordPress ..

    Thread Starter chaim3026

    (@chaim3026)

    Vijay Hardaha

    (@vijayhardaha)

    Ok, Maybe for PNG it doesn’t do that, in that case, you can add this code in theme’s functions.php

    add_filter( 'big_image_size_threshold', '__return_false' );

    it will disable the scaling of large images.

    the default value is 2560

    if you have to keep the limiting but change the value then.

    function custom_image_threshold(){
        return 6000;
    }
    add_filter( 'big_image_size_threshold', 'custom_image_threshold' );
    Thread Starter chaim3026

    (@chaim3026)

    big! Works great! Thanks!!

    Vijay Hardaha

    (@vijayhardaha)

    Cheers!

Viewing 10 replies - 1 through 10 (of 10 total)
  • The topic ‘The image file has been scaled down, does not give me access to the original fil’ is closed to new replies.