Redirect Bloom To Thanks You Page - kary4/divituts GitHub Wiki

You can use this plugin: https://es-ar.wordpress.org/plugins/redirect-for-bloom-by-logic-hop/installation/

Or a custom solution:

<script>
(function($) {
$(window).load(function() {
$('#optinforms-form1').children('input[type=submit]').on("click", function(event) {
setTimeout(function() {
event.preventDefault();
var m_text = $('.et_bloom_animate_message').text();
if (m_text == 'You have successfully subscribed! Please check your inbox for access details...') {
window.location.assign("http://www.gammamindset.com/tfsoptin/");
}
}, 2000);
});
});
})(jQuery);
</script>
⚠️ **GitHub.com Fallback** ⚠️