Advertisement
Aurangajeb

Change action url for wpuf user_lisitng > view profile button

Feb 4th, 2021
1,162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. jQuery(document).ready(function( $ ){
  2.     // Your code in here
  3.     $user_containers = document.querySelectorAll('div.user-listing div.user-list div.user-box a.box-container');
  4.     for (let elem of $user_containers){
  5.     elem.href = elem.href.replace("user_id", "author");
  6.     }
  7. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement