-
Hello, Thank you in advance, |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
As explained here under
There is still one click necessary, but this is already a good way to solve the problem :) |
Beta Was this translation helpful? Give feedback.
-
Ok, and here is one way to even get rid of the click on the button. Just place in the above mentioned "form-login.php" inside of your child template, after the do_shortcode from above the following code: ` <?php jQuery( window ).load(function() {
});
?> This just get's the URL from the button and redirects the User to it :) ` |
Beta Was this translation helpful? Give feedback.
Ok, and here is one way to even get rid of the click on the button.
Just place in the above mentioned "form-login.php" inside of your child template, after the do_shortcode from above the following code:
` <?php
echo "<script>
jQuery( window ).load(function() {
});
?>
This just get's the URL from the button and redirects the User to it :)
`