• Resolved tatyana100

    (@tatyana100)


    Hello, when I use Simply Static plugin to create static pages then majority of images are present but some images got deformed or missed. They are missed or deformed locally or when I use a relative path.

    All images are fine and present on WordPress website. I could provide screen shots or links to compare.

    Could it be addressed in the next updating as the ability to use Jetpack galleries pictures by making them clickable?

    How to make all images present and not being deformed in the static pages when using Simply Static?

    Thanks.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author patrickposner

    (@patrickposner)

    Hey @tatyana100,

    thanks for reaching out!

    Right now, I expect that to happen because we limit the file size of images we transfer to your static site to 2MB, and other files will be skipped automatically.

    There is a pretty detailed explanation about why we do that here: https://www.ads-software.com/support/topic/exporting-large-photos-doesnt-work/#post-17412464

    However, you can disable that limit with a code snippet:

    add_filter( 'ss_remote_get_args', function ( $args ) {
    	unset( $args['limit_response_size'] );
    
    	return $args;
    } );

    If you are familiar with setting up Child Themes, you can add the snippet to your theme’s functions.php file. Otherwise, I recommend using a plugin such as Code Snippets.

    We will also offer a setting within the next update to make that easier to configure!

    Thread Starter tatyana100

    (@tatyana100)

    Hello,
    I installed and activated plugin Code Snippers but the same images were destroyed or broken as before. I am using a standard theme. Could be some setting changed for a standard theme to avoid this issue?
    Could be next update help to fix this issue with images and when approximately next update would be made?

    thanks.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Some images are deformed or missed in static pages.’ is closed to new replies.