Database tables
The plugin writes data to the following tables:
wp_options
holds all general plugin settings.
Option name = photinia_settings
Settings are saved in this array:
[
'hide_default_editor' => 0,
'theme' => 'dark',
'background_updates' => 0,
'filtered_image_sizes' => [],
'product_key' => '',
'overwrite_images' => 1,
'disable_big_image_size_threshold' => 0,
];
wp_postmeta
saves all image edits.
Post meta name: _photinia_image_edits
.
We like using: https://wordpress.org/plugins/jsm-show-post-meta/ or https://wordpress.org/plugins/post-meta-data-manager/ to manage them in the backend.
Removing all data
There is no setting for this yet. This item is on our roadmap.
For now you can try using bulk delete plugins such as:
https://wordpress.org/plugins/wp-bulk-delete/ or https://wordpress.org/plugins/bulk-delete/
Always backup your database before bulk deletion attempts.