Advertisement
Aurangajeb

Replace WPUF Registration form Login/LostPass

Apr 3rd, 2021
923
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.87 KB | None | 0 0
  1. #-- Replace WPUF Registration form Login/LostPass --#
  2. function login_lost_pass_script(){
  3.   ?>
  4.   <script>
  5.     jQuery(document).ready(function(){
  6.       var login = jQuery('ul.wpuf-form li:last-child a:nth-child(2)').text();
  7.       var lostPass = jQuery('ul.wpuf-form li:last-child a:nth-child(3)').text();
  8.       if(login === 'Log In'){
  9.         jQuery('ul.wpuf-form li:last-child a:nth-child(2)').text('Home');
  10.         jQuery('ul.wpuf-form li:last-child a:nth-child(2)').removeAttr('href').attr('href', 'https://dokan.test/');
  11.       }
  12.       if(lostPass === 'Lost Password'){
  13.         jQuery('ul.wpuf-form li:last-child a:nth-child(3)').text('My Account');
  14.         jQuery('ul.wpuf-form li:last-child a:nth-child(3)').removeAttr('href').attr('href', 'https://dokan.test/my-account/');
  15.       }
  16.     });
  17.   </script>
  18.   <?php
  19. }
  20. add_action('wp_head', 'login_lost_pass_script', 11);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement