• Resolved wardencenter

    (@wardencenter)


    Hello – I need to completely uninstall this plugin, including removing all customizations I’ve made in the settings. Do you have an uninstaller, or documentation on how to do this?

    I will be reinstalling to use the plugin, but I need to start from scratch. I’ve deactivated and deleted the plugin. Have verified no folder/files left over, but when I reinstall, my old customizations are still present.

    Running WP 6.2.2, Blocksy theme 1.8.94

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support shubham0095

    (@shubham0095)

    Hi @wardencenter

    Sorry for the inconvenience.
    Under the our plugin root folder please create the file name uninstall.php
    and add the code given below in the file and then save it.

    <?php
    
    if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
        die;
    }
    
    $page_id = get_option('tecset-single-page-id');
    delete_post_meta($page_id, 'epta-custom-css');
    delete_post_meta($page_id, 'epta-apply-on');
    delete_post_meta($page_id, 'epta-categoery');
    delete_post_meta($page_id, 'epta-tag');
    delete_post_meta($page_id, 'epta-specific-event');
    delete_post_meta($page_id, 'tecset-date-format');
    delete_post_meta($page_id, 'epta-select-temp');
    delete_post_meta($page_id, 'epta-primary-color');
    delete_post_meta($page_id, 'epta-secondary-color');
    delete_post_meta($page_id, 'epta-primary-alternative-color');
    delete_post_meta($page_id, 'epta-url');
    wp_delete_post( $page_id);
    delete_option( 'tecset-installDate');
    delete_option( 'tecset-ratingDiv');
    delete_option( 'tecset-single-page-id');

    Once you add and save the code. Go to plugins in WordPress admin dashboard and deactivate the plugin and then delete the plugin . Now when you will install the new plugin from WordPress org directory you will get the new plugin installation and can start from scratch.

    Thread Starter wardencenter

    (@wardencenter)

    Got it – thank you!

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