Viewing 6 replies - 1 through 6 (of 6 total)
  • Hi,

    Thanks for using our theme

    This problem has already resolved in the new version of Maintenance. You can upload it from github:
    https://github.com/Fruitfulcode/Maintenance

    Regards

    Thread Starter mln83

    (@mln83)

    Hi @fruitfulcode,

    Thanks for the quick response.

    I am running Maintenance 2.7.1 + Maintenance Pro 2.7

    Will the update be made available through normal channels (ie www.remarpro.com / CodeCanyon?)

    Best regards,
    Michael

    Hi Michael,

    Of course soon the update will be available on www.remarpro.com

    Best regards

    Thread Starter mln83

    (@mln83)

    Hi @fruitfulcode,

    Thanks. I look forward to the updates.

    Best regards,
    Michael

    In the meantime, I looked in the code for trying to find the error.

    This seems to be due do the “reset_pass_url” function in wp-content/plugins/maintenance/load/functions.php filter, which does not return the original value in its first argument which it doesn’t even have.

    I modified the file, lines 296 to 303, the following ways and now it seems to work :

    function reset_pass_url($arg) {
    	include_once(ABSPATH . 'wp-admin/includes/plugin.php');
    	if (is_plugin_active('woocommerce/woocommerce.php')) {
    		$siteURL = get_option('siteurl');
    		return "{$siteURL}/wp-login.php?action=lostpassword";
    	}
    	return $arg;
    }
    add_filter( 'lostpassword_url',  'reset_pass_url', 999, 1 );

    I added the missing argument and returned it at the end.

    Thread Starter mln83

    (@mln83)

    Thanks for this update.

    I would appreciate the plugin author to implement the changes for the coming update ??

    Best regards,
    Michael

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Bug 2.7.1’ is closed to new replies.