• WordPress 4.5.3

    Hello,

    I installed redux framework with a couper theme
    My wordpress is a multisite installation
    I cannot to uninstall of my wordpress admin this plugin
    i can’t install an another theme because the admin page is welcome Redux Framework 3.6…
    I desactivate the plugin and the theme but the problem continued
    i tried redux framework disable plugin it doesn’t work
    Can you help me please?

Viewing 1 replies (of 1 total)
  • hi, I had this problem as well..drove me crazy..
    finally I edit file uninstall.php at plugin and then i saw delete option at WordPress dash:
    —————————
    * Fired when the plugin is uninstalled.
    *
    * @package ReduxFramework\Uninstall
    * @author Dovy Paukstys <[email protected]>
    * @since 3.0.0
    */

    // if uninstall.php is not called by WordPress, die
    if (!defined(‘redux-framework’)) {
    die;
    }

    $option_name = ‘wporg_option’;

    delete_option($option_name);

    // for site options in Multisite
    delete_site_option($option_name);

    // drop a custom database table
    global $wpdb;
    $wpdb->query(“DROP TABLE IF EXISTS {$wpdb->prefix}mytable”);

Viewing 1 replies (of 1 total)
  • The topic ‘Redux Framework how to remove’ is closed to new replies.