Advertisement
GochiSiyan

change the link

Sep 15th, 2021
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. add_action( 'wp_footer', function () {
  2. ?>
  3. <script>
  4. (function() {
  5. let login = 'https://theloginpage.com',
  6. register = 'https://theregisterpage.com';
  7. document.querySelectorAll('[href="#jeg_loginform"]').forEach(function(value){
  8. dupes = value.cloneNode(true);
  9. dupes.href = login;
  10. value.parentNode.replaceChild(dupes, value);
  11. });
  12. document.querySelectorAll('[href="#jeg_registerform"]').forEach(function(value){
  13. dupes = value.cloneNode(true);
  14. dupes.href = register;
  15. value.parentNode.replaceChild(dupes, value);
  16. });
  17. })();
  18. </script>
  19. <?php
  20. }, 100 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement