Change refresh page
-
Hi,
Currently, I have WP Social login active for comments, where, if a visitor is not logged in, the comment form only shows a Facebook button for login. Upon clicking the button and refreshing, the page auto scrolls down to the comment form and the comment textarea input field and submit button is shown.
The plugin works beautifully doing this, except now, I’ve made the comment text area autofocused using this javascript code
$.fn.focusWithoutScrolling = function(){ var x = window.scrollX, y = window.scrollY; this.focus(); window.scrollTo(x, y); }; $('#mytextarea').focusWithoutScrolling();
so that the page doesn’t scroll down to the comment textarea input field on the page load.
Now, upon logging in and refreshing, the page doesn’t scroll to the comment form (I am assuming because of this script I added).
I am thinking an easy fix is to have the plugin link to <?php the_permalink(); ?>#respond instead of refreshing the page.
Where do I change this?
Thanks,
Rosellehttps://www.ads-software.com/extend/plugins/wordpress-social-login/
- The topic ‘Change refresh page’ is closed to new replies.