• Resolved sezernw

    (@sezernw)


    When switching between profile tabs, the page is scrolled down. How can I override this?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Try this ??

    <script> if (history.scrollRestoration) {
        history.scrollRestoration = 'manual';
    } else {
        window.onbeforeunload = function () {
            window.scrollTo(0, 0);
        }
    }</script>
    Plugin Support alexrollin

    (@alexrollin)

    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:

    
    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

    (@sezernw)

    Thank you. ?????

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Scroll Offset’ is closed to new replies.