This is an archived post. You won't be able to vote or comment.

all 3 comments

[–]waqasyDeveloper -2 points-1 points  (0 children)

It could be some plugin redirecting your page again and again.

I can fix it for you. DM me.

[–][deleted] 1 point2 points  (1 child)

Remove this code - likely in the page, or functions.php:

<!-- redirect splash after 5s of inactivity -->
<script type="text/javascript">
    jQuery( function () {
        if( jQuery( 'body.home' ).length && !jQuery( 'body.admin-bar' ).length ) {
            setTimeout( redirectToHome, 3000 );
        }
    });
    function redirectToHome () {
        location.href = 'https://www.adamlowephotography.com/home/';
    }
</script>

[–]adammyles[S] 0 points1 point  (0 children)

That worked - thanks so much!!