• Resolved renaisonp

    (@renaisonp)


    Hello

    Is it possible not to display the Exit-intend if a second page is visited?
    
    Indeed, if a second page is visited, the bounce rate drops and then the Exit-intend is no longer necessary.
    
    This option would be very interesting to set up if not existing.
Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Author Brave

    (@getbrave)

    @renaisonp You can simply Change Frequency Settings to achieve that.

    Go to Settings Screen, then scroll down the “Frequency” section. And then enable the first option and customize it to your need.

    Thread Starter renaisonp

    (@renaisonp)

    No, that’s not the request.
    The request does not concern the number (frequency) of display.

    But the request concerns an option which would make it possible not to display the Exit-intent at all if the visitor visits a second page.

    Plugin Author Brave

    (@getbrave)

    @renaisonp So whether or not the visitor has seen the popup on first page or not, you do not want it to show up on subsequent pages?

    Thread Starter renaisonp

    (@renaisonp)

    Yes that’s it.

    The exit-intent is useful to lower the bounce rate, if the visitor only visits one page.

    If the visitor visits two pages the Exit-intent is no longer necessary.

    Plugin Author Brave

    (@getbrave)

    Please install a JS insertion plugin and then insert this Javascript code to prevent the popup from appearing if the user already viewed a page once:

    var renaisonp_page_view_data = localStorage.getItem('brave_page_visited'); 
    renaisonp_page_view_data = renaisonp_page_view_data ? JSON.parse(renaisonp_page_view_data) : [];
    if(renaisonp_page_view_data.length > 1){
       var selectedPopupStep = document.querySelector('#brave_popup_78847__step__0 .brave_popup__step__'+window.brave_currentDevice)
       selectedPopupStep.dataset.open = true; 
    }
    

    Regards

    • This reply was modified 2 years, 4 months ago by Brave.
    Thread Starter renaisonp

    (@renaisonp)

    thanks I will try.

    “renaisonp_” is it the right variable or just an example?

    Plugin Author Brave

    (@getbrave)

    Since the variable needs to be unique, we added renaisonp to make it one. Do not change it.

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘display the Exit-intend’ is closed to new replies.