Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Support WP Lab Support

    (@wp-lab-support)

    Hello motofusion.

    I am happy to help you with this.

    Simply visit Amazon > Settings > Advanced > You then will see “Uninstall on Removal” option on the right hand side. Set that option to yes and save. Then deactivate and uninstall the plugin.

    Kind regards,
    John

    Thread Starter motofusion

    (@motofusion)

    Tried it, it did not work. Data is still there in database.
    See screenshot here: https://drive.google.com/file/d/0B_-h9SMk-es7dlJ6QVlzV0hSWnM/view?usp=sharing

    Plugin Support WP Lab Support

    (@wp-lab-support)

    Hello motofusion.

    It does work, it’s just not deleting that data. What the uninstall option does is remove all custom tables created by WP-Lister, and all configuration options starting with “wplister_” from the wp_options table.

    The data from the screenshot is the product meta data in wp_postmeta. To remove them as well (for both WP-Lister for eBay and WP-Lister for Amazon) you can run the following SQL queries:

    DELETE FROM wp_postmeta WHERE meta_key LIKE ‘_ebay_%’
    DELETE FROM wp_postmeta WHERE meta_key LIKE ‘_amazon_%’
    DELETE FROM wp_postmeta WHERE meta_key LIKE ‘_wpla_%’

    Kind regards,
    John

    Thread Starter motofusion

    (@motofusion)

    Thanks. It worked.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘How to uninstall cleanly’ is closed to new replies.