TheBigK Well-known member May 19, 2013 #1 I'm curious to know whether there's a way to automatically open the login / sign-up drawer at the top 30 seconds after the visitor visits the site? I know this would be annoying, but I want to try this out.
I'm curious to know whether there's a way to automatically open the login / sign-up drawer at the top 30 seconds after the visitor visits the site? I know this would be annoying, but I want to try this out.
Jake Bunce Well-known member May 26, 2013 #2 Admin CP -> Appearance -> Templates -> page_container_js_body Add this to the top: Code: <script> window.onload = function() { setTimeout(function(){ $('#loginBar #loginBarHandle a').click()},30000); }; </script> Upvote 0 Downvote
Admin CP -> Appearance -> Templates -> page_container_js_body Add this to the top: Code: <script> window.onload = function() { setTimeout(function(){ $('#loginBar #loginBarHandle a').click()},30000); }; </script>
TheBigK Well-known member May 27, 2013 #3 Jake Bunce said: Admin CP -> Appearance -> Templates -> page_container_js_body Add this to the top: Code: <script> window.onload = function() { setTimeout(function(){ $('#loginBar #loginBarHandle a').click()},30000); }; </script> Click to expand... Thanks a lot Jake. I'm curious to know whether the open drawer would be an obstacle for the Google Spiders in crawling the website (following links)? Upvote 0 Downvote
Jake Bunce said: Admin CP -> Appearance -> Templates -> page_container_js_body Add this to the top: Code: <script> window.onload = function() { setTimeout(function(){ $('#loginBar #loginBarHandle a').click()},30000); }; </script> Click to expand... Thanks a lot Jake. I'm curious to know whether the open drawer would be an obstacle for the Google Spiders in crawling the website (following links)?
Jake Bunce Well-known member May 27, 2013 #4 TheBigK said: Thanks a lot Jake. I'm curious to know whether the open drawer would be an obstacle for the Google Spiders in crawling the website (following links)? Click to expand... Nope. Upvote 0 Downvote
TheBigK said: Thanks a lot Jake. I'm curious to know whether the open drawer would be an obstacle for the Google Spiders in crawling the website (following links)? Click to expand... Nope.