• HI,
    I installed the plugin and decided it didn’t meet with my requirements.
    Now I am unable to delete or deactivate the plugin and get a php error:

    [21-Dec-2016 18:25:26 UTC] PHP Notice: Undefined property: Wp_Custom_Register_Login_Loader::$shortcodes in /home/sandca94/public_html/largomar/wp-content/plugins/wp-custom-register-login/includes/class-wp-custom-register-login-loader.php on line 96
    [21-Dec-2016 18:25:27 UTC] PHP Notice: Undefined property: Wp_Custom_Register_Login_Loader::$shortcodes in /home/sandca94/public_html/largomar/wp-content/plugins/wp-custom-register-login/includes/class-wp-custom-register-login-loader.php on line 96

    How do I get rid of this plugin?

    Regards,

    Craig

Viewing 1 replies (of 1 total)
  • I am not sure if anyone has a better solution, but I had the same issue once we upgrade wordpress for a client to the newest version. I modified the file
    wp-custom-register-login/includes/class-wp-custom-register-login-loader.php

    I added the following 2 line blocks. Right below line 42 (protected $filters;)

    I added
    /**
    * The array of shortcodes registered with WordPress.
    *
    * @since 1.0.0
    * @access protected
    * @var array $shortcodes The shortcodes registered with WordPress to fire when the plugin loads.
    */
    protected $shortcodes;

    Then in the constructor which is now line 58 is you added the above code right below $this->filters = array();

    I added
    $this->shortcodes = array();

    Adding the above code got the site I had to work. I am not 100% sure what it does to the plugin.

Viewing 1 replies (of 1 total)
  • The topic ‘Plugin won’t deactivate or delete’ is closed to new replies.