In Wordpress my comment template display the LOGIN link above each comments if you aren't logged in, saying that i need to be logged to comment the post. Now, the problem is that the login link send the user to the wp-admin login, instead of the vBulletin login. How can i set it?
i tried to insert the link
http://website/forum/login.php?do=login in the wp-includes/comment-template.php instead the login wp href
Code:
href="' . esc_url( wp_login_url( get_permalink() ) ) . '">' . $login_text . '</a>';
but the link send the user to the main forum folder, not the login form.
Can you help me?