Title: Scroll Offset
Last modified: January 4, 2023

---

# Scroll Offset

 *  Resolved [sezernw](https://wordpress.org/support/users/sezernw/)
 * (@sezernw)
 * [3 years, 4 months ago](https://wordpress.org/support/topic/scroll-offset-5/)
 * When switching between profile tabs, the page is scrolled down. How can I override
   this?

Viewing 3 replies - 1 through 3 (of 3 total)

 *  [SplashMedia](https://wordpress.org/support/users/keith679/)
 * (@keith679)
 * [3 years, 4 months ago](https://wordpress.org/support/topic/scroll-offset-5/#post-16343125)
 * Try this 🙂
 *     ```wp-block-code
       <script> if (history.scrollRestoration) {
           history.scrollRestoration = 'manual';
       } else {
           window.onbeforeunload = function () {
               window.scrollTo(0, 0);
           }
       }</script>
       ```
   
 *  Plugin Support [alexrollin](https://wordpress.org/support/users/alexrollin/)
 * (@alexrollin)
 * [3 years, 4 months ago](https://wordpress.org/support/topic/scroll-offset-5/#post-16344503)
 * Try adding following code in functions.php file of currently active theme or 
   via Code Snippet plugin and let us know if it helps or not:
 *     ```wp-block-code
       add_filter('uwp_add_tab_content_hashtag', 'uwp_add_tab_content_hashtag_cb');
       function uwp_add_tab_content_hashtag_cb(){
       	return false;
       }
       ```
   
 *  Thread Starter [sezernw](https://wordpress.org/support/users/sezernw/)
 * (@sezernw)
 * [3 years, 4 months ago](https://wordpress.org/support/topic/scroll-offset-5/#post-16345442)
 * Thank you. ⭐⭐⭐⭐⭐

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Scroll Offset’ is closed to new replies.

 * ![](https://ps.w.org/userswp/assets/icon-256x256.png?rev=2784318)
 * [UsersWP - Front-end login form, User Registration, User Profile & Members Directory plugin for WP](https://wordpress.org/plugins/userswp/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/userswp/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/userswp/)
 * [Active Topics](https://wordpress.org/support/plugin/userswp/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/userswp/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/userswp/reviews/)

## Tags

 * [profile tab](https://wordpress.org/support/topic-tag/profile-tab/)
 * [scroll](https://wordpress.org/support/topic-tag/scroll/)

 * 3 replies
 * 3 participants
 * Last reply from: [sezernw](https://wordpress.org/support/users/sezernw/)
 * Last activity: [3 years, 4 months ago](https://wordpress.org/support/topic/scroll-offset-5/#post-16345442)
 * Status: resolved