If you have created WebP and/or AVIF files with ShortPixel Image Optimizer (SPIO) and for some reason you want to delete them from your file system, do the following:
- Log into your hosting provider’s control panel and access the file manager. Alternatively, you can also use an FTP client or login via SSH to your server. Please contact your hosting provider if you need help with this step.
Navigate to the path where your WebP/AVIF files are located. This is usually /wp-content/uploads/YYYY/MM, where
YYYY
is the year andMM
is the month in which the upload occurred.- Delete any WebP/AVIF files you wanted to delete. If you are logged in via SSH, you just need to run this command inside the folder you want:
find . -name "*.webp" -type f -delete
- Go to /wp-content/themes/your_theme (where
your_theme
is the folder of the theme you are using) and edit the functions.php file. Add the following line:
add_filter('shortpixel/image/filecheck', function () { return true; });
- Save the file.
- Go to your WordPress dashboard, and then to Settings > ShortPixel > Tools.
- Click on the “Search and Migrate All” button. The purpose of this step is to remove the information that SPIO stores about the WebP/AVIF files from the database so that new information can be created and the database remains in a consistent state.
- Follow the instructions until the process is complete.
- Go back to edit the functions.php file and remove the line you added in step #5. Save the file.
That’s it!