Will the resize affect existing images that synced before I upgraded?
No — the resize only applies to images going forward. To resize the existing library, either run Sync All with cleanup enabled (the SAM original re-imports and the resize applies to the new copy), or use the WP-CLI `wp media regenerate` command alongside the new setting.
Can I keep some images at full resolution and resize others?
The max_image_width setting is global per site rather than per product. For mixed needs, set the cap high (e.g. 3000) so most photos are kept large but truly oversized ones get capped, or set to 0 to disable entirely.
What if my server runs PHP-GD instead of Imagick?
Both work. The plugin uses WordPress's wp_get_image_editor which auto-selects whichever's available. If neither is present (extremely rare), the resize step logs a warning and skips — the image still imports at full resolution.
Is the cascade-delete safe with manually uploaded featured images?
Yes. Every delete is gated on _sam_image_id post meta, which is only ever set by the plugin's own ImageSideloader. Manually-uploaded featured images don't carry it and are never touched, even by the orphan sweep.
What does the "Clean up orphan media" button do on a freshly-installed site?
Nothing destructive. It scans every SAM-origin attachment and only deletes ones whose parent post is missing. On a clean site it finds zero matches and reports "Nothing to clean up — Media Library is already orphan-free." Safe to run any time.