Originally Posted by
turnkey13
w3 total cache giving error in login page:
<input type="hidden" name="redirect_to" value="
Catchable fatal error: Object of class W3_Redirect could not be converted to string in
.../wp-includes/formatting.php on line
510
I noticed this message only in Internet Explorer. I then looked at the source code in Firefox and there it was.
Basically all I did was remove the following from tpl-registration.php and everything seems to function correctly:
PHP Code:
<input type="hidden" name="redirect_to" value="<?php echo esc_attr($redirect); ?>" />
Actually I removed the echo and commented out the rest.