Please submit a private ticket if you need to share sensitive information, such as license details and admin credentials.

Okay
  Public Ticket #3091453
Deletion of settings on plugging removal
Closed

Comments

  • Ben started the conversation

    Is it possible to remove saved settings when this plugin is removed. I have noticed that once it is deleted and reinstalled the settings that were chosen previously are retained and these saved settings seem to be conflicting with other variation / swatch pulgins. Thanks for your help.

  •  767
    Janilyn replied

    Hi Ben,

    Thank you for contacting WPClever Support Forum. 

    We’ve received your ticket and assigned one of our developers to help you with that. 

    He’ll be looking into your question and responding with specific instructions as soon as possible. 

    Please stay patient as we're having very heavy workloads, it might take some time for our developers to reach back.

    Best regards.

    Janilyn T. - WPClever Support Agent

  •  153
    Henry replied

    Hi

    Our key settings are given their own names, so it's almost impossible to affect other plugins.

    Please send me your website credentials (wp-admin link, username, password) then I can check and fix this issue for you.

    =================#===================

    To Remove all our options, please add the below custom code (How to add custom code?)

    // Remove all matching options from the database
    foreach (wp_load_alloptions() as $option => $value) {
        
        if (strpos($option, '_woovr_') !== false) {        
            delete_option($option);        
        }    
    }


    Best regards,
    Henry N.