Home Forums WoodMart support forum PROMO POPUP

PROMO POPUP

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #33974

    cri.galia
    Participant

    Hello, it’s possible to see always the PROMO POPUP?
    In this moment is possible to see PROMO POPUP only the first time when there isn’t cookies.
    I don’t see in Themes Settings the possibility to set alway the POPUP.
    Thanks

    Cristina

    #33975

    Artem Temos
    Keymaster

    Hi,

    But is the way promo popups works on all ecommerce websites. If your visitors will always see this popup it will be very annoying and drop your conversion rate completely. Did you see any websites where users are not able to disable this popup completely?

    Regards

    #33980

    cri.galia
    Participant

    In this site for example http://www.donnamoderna.com/ there is always PROMO POPUP whit different information.

    #33981

    Artem Temos
    Keymaster

    We are sorry, but there is no such ability in our theme. And we tested your example and didn’t see any popups at all. Maybe they appear only when you visit some particular pages. But they don’t pop up each time you visit some page.

    #33983

    cri.galia
    Participant

    I’d like to see PROMO POPUP some day, I can set manually but the POPUP not appears

    #33984

    cri.galia
    Participant

    But I’d like to see POPUP only in home page!
    Like this http://www.asilonidopapaveriepapere.com/

    #33992

    Artem Temos
    Keymaster

    As we said, we don’t have such function in our theme. If you want, you can achieve it with additional code customization. Firstly, disable JS minification in Theme Settings / Performance. Then open this file js/functions.js and change the code

                    if ( $.cookie('woodmart_popup') != 'shown' ) {
                        if( woodmart_settings.popup_event == 'scroll' ) {
                            $(window).scroll(function() {
                                if( shown ) return false;
                                if( $(document).scrollTop() >= woodmart_settings.popup_scroll ) {
                                    showPopup();
                                    shown = true;
                                }
                            });
                        } else {
                            setTimeout(function() {
                                showPopup();
                            }, woodmart_settings.popup_delay );
                        }
                    }

    to this one

    if ( $.cookie('woodmart_popup') != 'shown' || $('body').hasClass('home') ) {
        if( woodmart_settings.popup_event == 'scroll' ) {
            $(window).scroll(function() {
                if( shown && !$('body').hasClass('home') ) return false;
                if( $(document).scrollTop() >= woodmart_settings.popup_scroll ) {
                    showPopup();
                    shown = true;
                }
            });
        } else {
            setTimeout(function() {
                showPopup();
            }, woodmart_settings.popup_delay );
        }
    }

    Regards

Tagged: 

Viewing 7 posts - 1 through 7 (of 7 total)