• Resolved validhtml

    (@validhtml)


    Hi.
    How to convert images in reverse order from new to old?
    First, it converts files in folders for 2015 and the process is very long, the browser tab freezes periodically.
    Is it possible to start the conversion process in the opposite direction from 2021 and below?
    THX.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Mateusz Gbiorczyk

    (@mateuszgbiorczyk)

    Hi @validhtml,

    Thank you for your message.

    Do you have a lot of entries when converting images in the “Additional informations about process” section?

    Thread Starter validhtml

    (@validhtml)

    Yes, there are many messages that the webp file is larger than the original and the page began to hang. I had to delete this block in the source code of the page in the browser, otherwise everything would freeze.
    So, can I start the conversion process from new files to old ones? If so, how to do it?

    Plugin Author Mateusz Gbiorczyk

    (@mateuszgbiorczyk)

    @validhtml, please add the following filter in the functions.php file in your theme directory to hide these messages:

    add_filter( 'webpc_convert_error', function( $message, $status ) {
      if ( ! in_array( $status, [ 'larger_than_original' ] ) ) {
        return $message;
      }
      return null;
    }, 10, 2 );

    Then the problems with freezing the browser should disappear. Let me know if it helped you.

    It is not possible to reverse the order in which the images are converted.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How to convert images in reverse order from new to old?’ is closed to new replies.