What is the best Exit pop up plugin?

by Beka
22 replies
I am looking for a exit pop up that automaticly redirects the visitors to another page,

Is there any pluging for WP that i can use?
#exit #plugin #pop
  • Profile picture of the author daileywealth
    Great question and I am interested to see what others are using as well.

    I am currently using PopUpAlly in WP. It's really easy to use and I have been able to capture some subscribers from it.
    {{ DiscussionBoard.errors[9395183].message }}
  • Profile picture of the author rob587
    Originally Posted by Beka View Post

    I am looking for a exit pop up that automaticly redirects the visitors to another page,

    Is there any pluging for WP that i can use?
    SumoMe... its free and easy to use.
    {{ DiscussionBoard.errors[9395210].message }}
  • Profile picture of the author thedanbrown
    There's a thread about this every couple weeks. Do a search in google with quotation marks "Warrior Forum Exit Popup Plugin" and you will find a few threads with a bunch of listed resources.
    {{ DiscussionBoard.errors[9395267].message }}
  • {{ DiscussionBoard.errors[9395271].message }}
    • Profile picture of the author agmccall
      I like Hybrid-connect

      al
      Signature

      "Opportunity is missed by most people because it is dressed in overalls and looks like work." Thomas Edison

      {{ DiscussionBoard.errors[9395284].message }}
  • Profile picture of the author celebcaleb
    I used to use pop up domination but I didn't like it at all and customer service is not good. I like to use the free ones (saves money and gets the job done)
    {{ DiscussionBoard.errors[9395289].message }}
  • Profile picture of the author unreal
    i use PopUpAlly it's pretty good so far!
    {{ DiscussionBoard.errors[9395321].message }}
  • Profile picture of the author writeaway
    Redirects the visitor? Wouldn't that KILL site quality? Everything you do with your site impacts overall brand value perception. Tricks like that might harm the goodwill your content has built up in the eyes of your visitors...
    {{ DiscussionBoard.errors[9395326].message }}
    • Profile picture of the author Beka
      Originally Posted by writeaway View Post

      Redirects the visitor? Wouldn't that KILL site quality? Everything you do with your site impacts overall brand value perception. Tricks like that might harm the goodwill your content has built up in the eyes of your visitors...
      I am building a sales funnel, i want to send that traffic to cpa offers. i have seen many sales funnel like that.

      when i press exit the site automaticly redirects to a downsell or cpa offer, but i still have the option to leave. or stay at the page
      {{ DiscussionBoard.errors[9397189].message }}
      • Profile picture of the author Steve B
        Years ago, it seems, pop ups and redirects were the rage. I have never liked them personally as they take control away from the viewer, if only for a second launching a new screen. But I thought maybe that was just me. Maybe my opinion is different than most.

        I decided to check into it further. I did a fair amount of research regarding how intrusive pop ups were in the minds of consumers. The percentage of dislike of pop ups was quite a bit greater than I had supposed.

        Yes, in some cases, they do bring in additional revenue. Is that justification for ticking off and inconveniencing a bunch of your subscribers and prospects? You will have to decide. Not in my business.

        Steve
        Signature

        Steve Browne, online business strategies, tips, guidance, and resources
        SteveBrowneDirect

        {{ DiscussionBoard.errors[9397259].message }}
        • Profile picture of the author Beka
          Originally Posted by Steve B View Post

          Years ago, it seems, pop ups and redirects were the rage. I have never liked them personally as they take control away from the viewer, if only for a second launching a new screen. But I thought maybe that was just me. Maybe my opinion is different than most.

          I decided to check into it further. I did a fair amount of research regarding how intrusive pop ups were in the minds of consumers. The percentage of dislike of pop ups was quite a bit greater than I had supposed.

          Yes, in some cases, they do bring in additional revenue. Is that justification for ticking off and inconveniencing a bunch of your subscribers and prospects? You will have to decide. Not in my business.

          Steve
          I do not know what kind of research you did, but i love exit pop ups..

          bought a product the other day that included a software i need for my business.
          it costs $47 for some reason i wanted to wait the next day to buy it, so i pressed exit. and then a pop up came up, and said, "do not leave, get it for $27" I pressed "stay on page" and then bought the product for $27 dollars.

          The exit pop up saved me 20 bucks. And i am very happy customer.

          I dont see exit pop ups as a problem,
          as long i can offer a down sell or a free gift.
          {{ DiscussionBoard.errors[9397535].message }}
      • Profile picture of the author avneriko
        #11 Beka - Can you recommend of some way/ person/ service to build funnel?
        {{ DiscussionBoard.errors[9399513].message }}
  • Profile picture of the author WillR
    I would never use a popup that automatically redirects people. That's just not a good idea for many reasons.

    If it's just normal popups you want to create then I recommend:
    Action PopUp: Attention-Grabbing Unblockable PopUps When Your Visitors Leave the Page...
    {{ DiscussionBoard.errors[9395825].message }}
  • Profile picture of the author seekdefo
    Holdonstranger is a new one in beta, you can try it on the site itself and see, plus it's cheap
    Signature

    Brevity is the soul of wit

    {{ DiscussionBoard.errors[9397549].message }}
  • Profile picture of the author Javisito
    Originally Posted by Beka View Post

    I am looking for a exit pop up that automaticly redirects the visitors to another page,

    Is there any pluging for WP that i can use?
    You can either use a WP-Plugin or if your site is in HTML format you can use this script I use myself.

    Here's the code

    HTML Code:
    <script language="javascript">
    (function() {
        setTimeout(function() {
        var __redirect_to = 'YOUR URL HERE';//
    
        var _tags = ['button', 'input', 'a'], _els, _i, _i2;
        for(_i in _tags) {
            _els = document.getElementsByTagName(_tags[_i]);
            for(_i2 in _els) {
                if((_tags[_i] == 'input' && _els[_i2].type != 'button' && _els[_i2].type != 'submit' && _els[_i2].type != 'image') || _els[_i2].target == '_blank') continue;
                _els[_i2].onclick = function() {window.onbeforeunload = function(){};}
            }
       }
    
        window.onbeforeunload = function() {
            setTimeout(function() {
                window.onbeforeunload = function() {};
                setTimeout(function() {
                    document.location.href = __redirect_to;
                }, 500);
            },5);
            return 'YOUR EXIT POP MESSAGE HERE';
        }
        }, 500);
    })();
    </script>
    Hope that was any help for you
    {{ DiscussionBoard.errors[9397680].message }}
    • Profile picture of the author Beka
      Originally Posted by Javisito View Post

      You can either use a WP-Plugin or if your site is in HTML format you can use this script I use myself.

      Here's the code

      HTML Code:
      <script language="javascript">
      (function() {
          setTimeout(function() {
          var __redirect_to = 'YOUR URL HERE';//
      
          var _tags = ['button', 'input', 'a'], _els, _i, _i2;
          for(_i in _tags) {
              _els = document.getElementsByTagName(_tags[_i]);
              for(_i2 in _els) {
                  if((_tags[_i] == 'input' && _els[_i2].type != 'button' && _els[_i2].type != 'submit' && _els[_i2].type != 'image') || _els[_i2].target == '_blank') continue;
                  _els[_i2].onclick = function() {window.onbeforeunload = function(){};}
              }
         }
      
          window.onbeforeunload = function() {
              setTimeout(function() {
                  window.onbeforeunload = function() {};
                  setTimeout(function() {
                      document.location.href = __redirect_to;
                  }, 500);
              },5);
              return 'YOUR EXIT POP MESSAGE HERE';
          }
          }, 500);
      })();
      </script>
      Hope that was any help for you
      Very nice. Thank you. I will use this
      {{ DiscussionBoard.errors[9397877].message }}
  • Profile picture of the author aptohosting
    We have been using Exit Intel on our site for the last few months and have seen great results. Granted they are not free, they are a managed service and do all the split testing and conversion work for us.
    Signature

    AptOHQ specializes in search engine optimization and web development for small/medium sized businesses. Give us call today at 866-404-9090 to learn how we can grow your company today!

    {{ DiscussionBoard.errors[9398577].message }}
  • Profile picture of the author hantoren
    Definitely Bounce Exchange, or OptiMonk (free beta). They work with exit-intent popup which means the window won't show up when the user already "left" (clicked "x") the site, it will show up when they intend to leave the website, which is way better and not so disturbing.

    Here is an example video demostrating how this technique is used to decrease the bounce rate and increase visitor time, conversion, and opt-in rates. It works with blogs or forums as well, not just with ecommerce sites.

    {{ DiscussionBoard.errors[9399265].message }}
    • Profile picture of the author Beka
      Originally Posted by hantoren View Post

      Definitely Bounce Exchange, or OptiMonk (free beta). They work with exit-intent popup which means the window won't show up when the user already "left" (clicked "x") the site, it will show up when they intend to leave the website, which is way better and not so disturbing.

      Here is an example video demostrating how this technique is used to decrease the bounce rate and increase visitor time, conversion, and opt-in rates. It works with blogs or forums as well, not just with ecommerce sites.

      Optimonk Demonstration Video - YouTube
      this looks very coool, thank you
      {{ DiscussionBoard.errors[9409164].message }}
  • Profile picture of the author JohnnyPlan
    Originally Posted by Beka View Post

    I am looking for a exit pop up that automaticly redirects the visitors to another page,

    Is there any pluging for WP that i can use?
    And, for what reason would you be redirecting your traffic to another page on exit? The only thing I could think of is how maybe you want to sell your exit traffic. As someone else mentioned, redirecting your traffic on exit could cause them to trust you less so that would decrease chance of them revisiting your site.
    {{ DiscussionBoard.errors[9468419].message }}

Trending Topics