superiorinternet
Forum Replies Created
-
Forum: Plugins
In reply to: [LoginWP (Formerly Peter's Login Redirect)] Still redirection after uninstallLook in functions.php and remove
function login_redirect( $redirect_to, $request, $user ){
return home_url(‘REDIRECTED_PAGE’);
}
add_filter( ‘login_redirect’, ‘login_redirect’, 10, 3 );Forum: Reviews
In reply to: [Health Check & Troubleshooting] CORRUPTS DATABASESure, I installed the plugin and activated it. Then I clicked on troubleshoot and I got the white screen of death. After that, I could not get anything to work. I removed the plugin totally and that did not resolve the problem. To fix, I dropped all of the tables in the database and uploaded my backup. I did that several times and got errors in the database import. So I created a new database and uploaded the backup with no problem. Once I did that it was fixed.
Forum: Plugins
In reply to: [Timeline Express] ImagesGiving Errors, Timeline ExpressSo I figured it out. I guess I had not noticed this since I moved the site a week or 2 ago. Since the database query is searching by guid and that field isn’t changed without replacing it with a search/replace query, I fixed that issue and it was resolved. Just FYI.
Forum: Plugins
In reply to: [Timeline Express] ImagesGiving Errors, Timeline ExpressPHP Version 5.5.23
MySQL Version 5.6.23
Apache Version 2.2.29I just found more stuff that it totally missing from github.
<script type=’text/javascript’ src=’https://blueimp.github.com/JavaScript-Templates/tmpl.min.js?ver=3.5.1′></script>
<script type=’text/javascript’ src=’https://blueimp.github.com/JavaScript-Load-Image/load-image.min.js?ver=3.5.1′></script>
<script type=’text/javascript’ src=’https://blueimp.github.com/JavaScript-Canvas-to-Blob/canvas-to-blob.min.js?ver=3.5.1′></script>
Forum: Plugins
In reply to: [Plugin: Contact Form 7] Redirect to Thank you page on submitThis worked for me
In the scripts.js in the contact form 7 folder look forif (1 == data.mailSent)
This is line 116 in the current versionthen add the following code after the jquery code
location.href="https://www.yourdomain.com/thankyou/";
so the final code would look like this
if (1 == data.mailSent) { jQuery(data.into).find('form').resetForm().clearForm(); location.href="https://www.yourdomain.com/thankyou/"; wpcf7ResponseOutput.addClass('wpcf7-mail-sent-ok');
Hope this helps!