Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Passing the username from Wordpress to the username in Vanilla
jaymz
New
Best Answer
-
hgtonight MVP
Welcome to the community!
I believe you could modify the
functions.php
file in the WP Vanilla Forums plugin to do what you are looking to do. Replace line 328 with$user['name'] = $current_user->user_login;
.Let me know if that works. It might only work on new connections.
Check out the Documentation! We are always looking for new content and pull requests.
Click on insightful, awesome, and funny reactions to thank community volunteers for their valuable posts.
6
Answers
Welcome to the community!
I believe you could modify the
functions.php
file in the WP Vanilla Forums plugin to do what you are looking to do. Replace line 328 with$user['name'] = $current_user->user_login;
.Let me know if that works. It might only work on new connections.
Search first
Check out the Documentation! We are always looking for new content and pull requests.
Click on insightful, awesome, and funny reactions to thank community volunteers for their valuable posts.
That worked like a charm. I just didn't know where to look. Thank You!
Me either.
Search first
Check out the Documentation! We are always looking for new content and pull requests.
Click on insightful, awesome, and funny reactions to thank community volunteers for their valuable posts.