HarrisITServices
Forum Replies Created
-
Forum: Plugins
In reply to: [Digicution Simple Twitter Feed] only 1 tweetI am having the same problem. Only 1 tweet showing when I have 3 in the general settings.
– I updated to the latest version.
– Deactivated
– Deleted
– Re-installed
Still not working correctly. Only one tweet showing. Any ideas?Forum: Plugins
In reply to: [Contact Form 7] wpcf7_mail_sent infinite loopAnyone have any ideas? The only solution I could find was to turn off ajax. However, for me this is not a solution. Does anyone know how to use the wpcf7 hook to redirect without turning ajax off?
Forum: Plugins
In reply to: [Contact Form 7] [Plugin: Contact Form 7] Can't make hooks workI am having the same issue and cannot figure it out. I have tried the following two snippets of code in functions.php and the email sends but the page never redirects. It just stays with the little spinning circle next to the submit button. If anyone has figured this out please let me know as this is driving me nuts.
add_action('wpcf7_mail_sent', 'wpcf7_redirect_on_submit'); function wpcf7_redirect_on_submit($wpcf7) { wp_redirect( 'http://www.google.com' ); exit; }add_action('wpcf7_mail_sent', 'wpcf7_redirect_on_submit'); function wpcf7_redirect_on_submit($wpcf7) { header( 'Location: http://www.google.com' ); exit; }Forum: Plugins
In reply to: [Contact Form 7] wpcf7_mail_sent infinite loopI am having the same issue and cannot figure it out. I have tried the following two snippets of code in functions.php and the email sends but the page never redirects. It just stays with the little spinning circle next to the submit button. If anyone has figured this out please let me know as this is driving me nuts.
add_action('wpcf7_mail_sent', 'wpcf7_redirect_on_submit'); function wpcf7_redirect_on_submit($wpcf7) { wp_redirect( 'http://www.google.com' ); exit; }add_action('wpcf7_mail_sent', 'wpcf7_redirect_on_submit'); function wpcf7_redirect_on_submit($wpcf7) { header( 'Location: http://www.google.com' ); exit; }Forum: Plugins
In reply to: [Contact Form 7] [Plugin: Contact Form 7] How to: Redirect after submitAny idea why this wouldn’t be working for me? I have tried the following two snippets of code in functions.php and the email sends fine, but the page never redirects. It just stays with the little spinning circle next to the submit button. Any help would be greatly appreciated as I would like to get this working without using JavaScript to redirect.
add_action('wpcf7_mail_sent', 'wpcf7_redirect_on_submit'); function wpcf7_redirect_on_submit($wpcf7) { wp_redirect( 'http://www.google.com' ); exit; }add_action('wpcf7_mail_sent', 'wpcf7_redirect_on_submit'); function wpcf7_redirect_on_submit($wpcf7) { header( 'Location: http://www.google.com' ); exit; }Forum: Plugins
In reply to: [Contact Form 7] wpcf7_mail_sent infinite loopI am having the same issue and cannot figure it out. I have tried the following two snippets of code in functions.php and the email sends but the page never redirects. It just stays with the little spinning circle next to the submit button. If anyone has figured this out please let me know as this is driving me nuts.
add_action('wpcf7_mail_sent', 'wpcf7_redirect_on_submit'); function wpcf7_redirect_on_submit($wpcf7) { wp_redirect( 'http://www.google.com' ); exit; }add_action('wpcf7_mail_sent', 'wpcf7_redirect_on_submit'); function wpcf7_redirect_on_submit($wpcf7) { header( 'Location: http://www.google.com' ); exit; }